Dusty settling SPH test#

Perform a dust settling test in a local stratified box.

 9 import os
10
11 import matplotlib as mpl
12 import matplotlib.cm as cm
13 import matplotlib.colors as mcolors
14 import matplotlib.pyplot as plt
15 import numpy as np
16 from matplotlib.lines import Line2D
17 from scipy.special import erfinv
18 from shamrock.utils.DustMRNDistribution import DustMRNDistribution
19
20 import shamrock
21
22 shamrock.enable_experimental_features()
23
24 # If we use the shamrock executable to run this script instead of the python interpreter,
25 # we should not initialize the system as the shamrock executable needs to handle specific MPI logic
26 if not shamrock.sys.is_initialized():
27     shamrock.change_loglevel(1)
28     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 )

Use shamrock documentation style for matplotlib

33 shamrock.matplotlib.set_shamrock_mpl_style()

Sim parameters

38 si = shamrock.UnitSystem()
39 sicte = shamrock.Constants(si)
40 codeu = shamrock.UnitSystem(
41     unit_time=3600 * 24 * 365,
42     unit_length=sicte.au(),
43     unit_mass=sicte.sol_mass(),
44 )
45 ucte = shamrock.Constants(codeu)
46
47 rho_i = 1e-6
48 central_mass = 1
49 R0 = 1
50 H_r_0 = 0.05
51
52 box_H_count = 8
53
54 ndust = 5
55 mrn_pow = 3.5
56 mrn_cutoff_si = np.inf  # would be 250e-9 normally
57 gamma = 1.4
58
59 epsilon_base = 0.01
60
61 tlist = [0.1 * i for i in range(20)] + [i * 0.1 + 2 for i in range(3000)]
62 tinject = 2
63 iinject = 20
64
65
66 sim_folder = "_to_trash/dusty_settle/"
67 dump_folder = sim_folder + "dump/"

Create the dump directory if it does not exist

 71 if shamrock.sys.world_rank() == 0:
 72     os.makedirs(sim_folder, exist_ok=True)
 73     os.makedirs(dump_folder, exist_ok=True)
 74
 75
 76 print("codeu.get('m') / codeu.get('s') =", codeu.get("m") / codeu.get("s"))
 77 print("codeu.to('m') / codeu.to('s') =", codeu.to("m") / codeu.to("s"))
 78
 79 G = ucte.G()
 80
 81
 82 def kep_profile(r):
 83     return (G * central_mass / r) ** 0.5
 84
 85
 86 def omega_k(r):
 87     return kep_profile(r) / r
 88
 89
 90 H = H_r_0 * R0
 91 cs = H * omega_k(R0)
 92 box = box_H_count * H
 93
 94 print(f"cs = {cs}")
 95 print(f"H = {H}")
 96
 97
 98 def scaling_rho(r):
 99     x, y, z = r
100
101     loc_h = H / (2**0.5)
102     gaussian = np.exp(-(y**2) / (2 * loc_h * loc_h)) / (loc_h * np.sqrt(2 * np.pi))
103     return gaussian
104
105
106 def func_rho_t(r):
107     return rho_i * scaling_rho(r)
108
109
110 def func_rho_d_j(r, idust):
111     return (0.1 / ndust) * rho_i * scaling_rho(r)
112
113
114 def func_rho_g(r):
115     return rho_i * scaling_rho(r) - sum([func_rho_d_j(r, i) for i in range(ndust)])
116
117
118 cs_g = cs
119
120
121 def uint_g(r):
122     rho_g = func_rho_g(r)
123     P = rho_g * cs_g * cs_g / gamma
124     return P / ((gamma - 1) * rho_g)
125
126
127 rho_grains_si_edges = np.array([2.3 * 1000 for i in range(ndust + 1)])
128 grain_size_si_edges = np.logspace(-5, -3, ndust + 1)
129
130 mrn_distribution = DustMRNDistribution(
131     codeu, mrn_pow, mrn_cutoff_si, grain_size_si_edges, rho_grains_si_edges
132 )
133
134 bmin = (-box / 8, -box / 8, -box)
135 bmax = (box / 8, box / 8, box)
136
137 N_target = 1e4
138 scheduler_split_val = int(2e7)
139 scheduler_merge_val = int(1)
140
141 xm, ym, zm = bmin
142 xM, yM, zM = bmax
143 vol_b = (xM - xm) * (yM - ym) * (zM - zm)
144
145 part_vol = vol_b / N_target
146
147 # lattice volume
148 HCP_PACKING_DENSITY = 0.74
149 part_vol_lattice = HCP_PACKING_DENSITY * part_vol
150
151 dr = (part_vol_lattice / ((4.0 / 3.0) * np.pi)) ** (1.0 / 3.0)
152 bmin, bmax = shamrock.math.get_ideal_hcp_box(dr, bmin, bmax)
153 xm, ym, zm = bmin
154 xM, yM, zM = bmax
155
156 vol_b = (xM - xm) * (yM - ym) * (zM - zm)
157 totmass = rho_i * vol_b
158 print("Total mass :", totmass)
159
160 pmass = -1
161
162 ctx = shamrock.Context()
163 ctx.pdata_layout_new()
164
165 model = shamrock.get_Model_SPH(context=ctx, vector_type="f64_3", sph_kernel="M6")
166
167 dump_helper = shamrock.utils.dump.ShamrockDumpHandleHelper(model, dump_folder)
168
169
170 def setup_model():
171     global bmin, bmax
172
173     cfg = model.gen_default_config()
174     # cfg.set_artif_viscosity_Constant(alpha_u = 1, alpha_AV = 1, beta_AV = 2)
175     # cfg.set_artif_viscosity_VaryingMM97(alpha_min = 0.1,alpha_max = 1,sigma_decay = 0.1, alpha_u = 1, beta_AV = 2)
176     cfg.set_artif_viscosity_VaryingCD10(
177         alpha_min=0.0, alpha_max=1, sigma_decay=0.1, alpha_u=1, beta_AV=2
178     )
179
180     cfg.set_dust_mode_monofluid_tvi(nvar=ndust)
181     cfg.set_dust_drag_epstein(gamma, mrn_distribution.grain_size, mrn_distribution.rho_grains)
182     cfg.add_ext_force_vertical_disc_potential(central_mass=1, R0=1)
183     cfg.add_ext_force_velocity_dissipation(eta=5)
184     cfg.set_boundary_periodic()
185     cfg.set_units(codeu)
186     cfg.set_eos_isothermal(cs)
187     cfg.print_status()
188     model.set_solver_config(cfg)
189
190     model.init_scheduler(int(1e8), 1)
191
192     model.resize_simulation_box(bmin, bmax)
193
194     setup = model.get_setup()
195     gen = setup.make_generator_lattice_hcp(dr, bmin, bmax)
196     setup.apply_setup(gen, insert_step=scheduler_split_val)
197
198     pmass = model.total_mass_to_part_mass(totmass)
199     model.set_particle_mass(pmass)
200     print("Current part mass :", pmass)
201
202     # Correct the barycenter
203     analysis_barycenter = shamrock.model_sph.analysisBarycenter(model=model)
204     barycenter, disc_mass = analysis_barycenter.get_barycenter()
205
206     if shamrock.sys.world_rank() == 0:
207         print(f"disc barycenter = {barycenter}")
208
209     model.apply_position_offset((-barycenter[0], -barycenter[1], -barycenter[2]))
210
211     def f_remap(r):
212         x, y, z = r
213
214         rn = max(abs(zM), abs(zm))
215         # print(y, H, H * erfinv(y / rn))
216         z = H * erfinv(z / rn)
217
218         z = min(z, zM)
219         z = max(z, zm)
220         return (x, y, z)
221
222     model.remap_positions(f_remap)
223     model.set_field_value_lambda_f64("uint", uint_g)
224
225     model.set_cfl_cour(0.25)
226     model.set_cfl_force(0.25)
227
228     model.timestep()
229
230
231 dump_helper.load_last_dump_or(setup_model)
232
233
234 pmass = model.get_particle_mass()
235
236
237 def compute_sj_new_j(patchdata, j):
238     global pmass
239
240     hpart = patchdata["hpart"]
241     rho = pmass * (model.get_hfact() / np.array(hpart)) ** 3
242
243     z = patchdata["xyz"][:, 2]
244     # mask to only modify particles with |z| < H
245     mask = 1 / (1 + np.exp((np.abs(z) - 1.75 * H) / (H / 16)))
246
247     epsilon_target = epsilon_base * mrn_distribution.mrn_weight[j] * mask
248     print(f"epsilon_target = {epsilon_target} {j}")
249     s = np.sqrt(rho * epsilon_target)
250
251     print(
252         f"s = {s} {np.isnan(s).any()} epsilon_target = {epsilon_target} mrn_weight = {mrn_distribution.mrn_weight[j]} mask = {mask}, rho = {rho}"
253     )
254
255     return s
256
257
258 # TODO: add function to modify fields e.g. get rho and do stuff according to it
259
260 cmap = "plasma"
261 dpi = 250
262
263
264 def save_analysis_data(filename, key, value, ianalysis):
265     """Helper to save analysis data to a JSON file."""
266     import json
267
268     if shamrock.sys.world_rank() == 0:
269         filepath = os.path.join(dump_folder, filename)
270         try:
271             with open(filepath, "r") as fp:
272                 data = json.load(fp)
273         except (FileNotFoundError, json.JSONDecodeError):
274             data = {key: []}
275         data[key] = data[key][:ianalysis]
276         data[key].append({"t": model.get_time(), key: value})
277         with open(filepath, "w") as fp:
278             json.dump(data, fp, indent=4)
279
280
281 def load_data_from_json(filename, key):
282     """Helper to load analysis data from a JSON file."""
283     import json
284
285     filepath = os.path.join(dump_folder, filename)
286     with open(filepath, "r") as fp:
287         data = json.load(fp)[key]
288     t = [d["t"] for d in data]
289     values = [d[key] for d in data]
290     return t, values
291
292
293 def analyse_and_plot(j):
294
295     pmass = model.get_particle_mass()
296     hfact = model.get_hfact()
297
298     dic = ctx.collect_data()
299     print(dic["s_j"])
300
301     print(dic["xyz"].shape)
302
303     x = dic["xyz"][:, 0]
304     y = dic["xyz"][:, 1]
305     z = dic["xyz"][:, 2]
306     s_j = dic["s_j"].reshape(-1, ndust)
307     ds_j_dt = dic["ds_j_dt"].reshape(-1, ndust)
308     cs = dic["soundspeed"]
309
310     print(s_j)
311
312     hpart = dic["hpart"]
313     rho = pmass * (hfact / np.array(hpart)) ** 3
314
315     print("compute original rho")
316     estimated_rho = [func_rho_t(dic["xyz"][kk]) for kk in range(len(dic["xyz"]))]
317
318     sz = 1
319
320     fig, axs = plt.subplots(nrows=1, ncols=2, figsize=(12, 5), dpi=dpi)
321     time = model.get_time() - tinject
322     fig.suptitle(f"t = {time:.2f} [yr]")
323
324     fig.subplots_adjust(left=0.07, right=1.05, wspace=0.35)
325
326     to_dens = codeu.to("kg") * codeu.to("m") ** -3
327
328     dust_cmap = plt.colormaps[cmap]
329     dust_norm = mcolors.LogNorm(
330         vmin=mrn_distribution.grain_size_si.min(), vmax=mrn_distribution.grain_size_si.max() * 10
331     )
332     dust_colors = dust_cmap(dust_norm(mrn_distribution.grain_size_si))
333
334     rho_dust_all = np.zeros(len(z))
335     epsilon_dust_all = np.zeros(len(z))
336
337     for i in range(ndust):
338         c = dust_colors[i]
339         axs[0].scatter(z, s_j[:, i] ** 2 * to_dens, s=sz, color=c, edgecolors="none")
340         axs[1].scatter(z, s_j[:, i] ** 2 / rho, s=sz, color=c, edgecolors="none")
341
342         rho_dust_all += s_j[:, i] ** 2 * to_dens
343         epsilon_dust_all += s_j[:, i] ** 2 / rho
344
345     axs[0].scatter(z, rho * to_dens, s=sz, color="0.0", edgecolors="none")
346     axs[0].scatter(z, rho_dust_all, s=sz, color="0.5", edgecolors="none")
347     axs[1].scatter(z, 1 - epsilon_dust_all, s=sz, color="0.0", edgecolors="none")
348     axs[1].scatter(z, epsilon_dust_all, s=sz, color="0.5", edgecolors="none")
349
350     # axs[0].scatter(y,estimated_rho)
351     axs[0].set_ylabel(r"$\rho$")
352     axs[0].set_xlabel(r"$z$")
353     axs[0].set_yscale("log")
354     axs[0].set_ylim(1e-20, 1e-8)
355     axs[0].set_xlim(-2.2 * H, 2.2 * H)
356     # axs[0].set_ylim(1e-12, 10**2)
357
358     axs[1].set_ylabel(r"$\epsilon_j$")
359     axs[1].set_xlabel(r"$z$")
360     axs[1].set_yscale("log")
361     # axs[1].set_ylim(1e-12, 2) # if you want the full range
362     axs[1].set_ylim(1e-4, 1e-1)  # if you want to see the dust only
363     axs[1].set_xlim(-2.2 * H, 2.2 * H)
364
365     gas_handle = Line2D(
366         [0],
367         [0],
368         linestyle="none",
369         marker="o",
370         markersize=5,
371         markerfacecolor="0.",
372         markeredgecolor="none",
373         label="gas",
374     )
375
376     dust_handle = Line2D(
377         [0],
378         [0],
379         linestyle="none",
380         marker="o",
381         markersize=5,
382         markerfacecolor="0.5",
383         markeredgecolor="none",
384         label="dust",
385     )
386     axs[0].legend(handles=[gas_handle, dust_handle], loc="upper right", fontsize=8)
387
388     dust_sm = cm.ScalarMappable(cmap=dust_cmap, norm=dust_norm)
389     dust_sm.set_array([])
390     cbar = fig.colorbar(dust_sm, ax=axs, pad=0.02, shrink=0.85)
391     cbar.set_label(r"grain size $s$ [m]")
392
393     os.makedirs(f"{dump_folder}/plots", exist_ok=True)
394     plt.savefig(f"{dump_folder}/plots/vert_slice_dens_{j:04d}.png")
395     # model.do_vtk_dump(f"dump_stratif_{j}.vtk", True)
396     plt.close()
397
398     fig, axs = plt.subplots(nrows=1, ncols=2, figsize=(12, 5), dpi=dpi)
399     time = model.get_time() - tinject
400     fig.suptitle(f"t = {time:.2f} [yr]")
401
402     fig.subplots_adjust(left=0.07, right=1.05, wspace=0.35)
403
404     to_dens = codeu.to("kg") * codeu.to("m") ** -3
405
406     rho_dust_all = np.zeros(len(z))
407     epsilon_dust_all = np.zeros(len(z))
408
409     for i in range(ndust):
410         c = dust_colors[i]
411         axs[0].scatter(z, s_j[:, i], s=sz, color=c, edgecolors="none")
412         axs[1].scatter(z, ds_j_dt[:, i], s=sz, color=c, edgecolors="none")
413
414     axs[0].set_ylabel(r"$s_j$")
415     axs[0].set_xlabel(r"$z$")
416     axs[0].set_xlim(-4 * H, 4 * H)
417     axs[0].set_yscale("symlog", linthresh=1e-10)
418
419     axs[1].set_ylabel(r"$\dot{s}_j$")
420     axs[1].set_xlabel(r"$z$")
421     axs[1].set_xlim(-4 * H, 4 * H)
422     axs[1].set_yscale("symlog", linthresh=1e-10)
423
424     dust_sm = cm.ScalarMappable(cmap=dust_cmap, norm=dust_norm)
425     dust_sm.set_array([])
426     cbar = fig.colorbar(dust_sm, ax=axs, pad=0.02, shrink=0.85)
427     cbar.set_label(r"grain size $s$ [m]")
428
429     plt.savefig(f"{dump_folder}/plots/vert_slice_s_{j:04d}.png")
430     plt.close()
codeu.get('m') / codeu.get('s') = 0.00021080513948785768
codeu.to('m') / codeu.to('s') = 4743.717361111111
cs = 0.31394308776061347
H = 0.05
 ---- MRN DISTRIBUTION ----
bin edges:
  grains sizes (edges) = [1e-05, 2.5118864315095822e-05, 6.309573444801929e-05, 0.00015848931924611142, 0.00039810717055349735, 0.001] [m]
  grains dens (edges) = [2300.0, 2300.0, 2300.0, 2300.0, 2300.0, 2300.0] [kg.m^-3]
  grains sizes (edges) = [6.684587122268445e-17, 1.6790923692669792e-16, 4.217689339612993e-16, 1.0594356624496489e-15, 2.661182065564636e-15, 6.684587122268445e-15] [code u]
  grains dens (edges) = [3872442.9558226797, 3872442.9558226797, 3872442.9558226797, 3872442.9558226797, 3872442.9558226797, 3872442.9558226797] [code u]

bin centers (geom averages):
  grains sizes (bin) = [1.584893192461114e-05, 3.9810717055349735e-05, 0.0001, 0.00025118864315095806, 0.0006309573444801933] [m]
  grains dens (bin) = [2300.0, 2300.0, 2300.0, 2300.0, 2300.0] [kg.m^-3]
  grains sizes (bin) = [1.0594356624496489e-16, 2.661182065564636e-16, 6.684587122268445e-16, 1.6790923692669784e-15, 4.217689339612995e-15] [code units]
  grains dens (bin) = [3872442.9558226797, 3872442.9558226797, 3872442.9558226797, 3872442.9558226797, 3872442.9558226797] [code units]
  massgrid = [3.835451057880348e-11, 6.078780271652334e-10, 9.634217471008698e-09, 1.5269205684491628e-07, 2.42000601436393e-06] [kg]
  massgrid = [1.9288453222227883e-41, 3.0570138205013574e-40, 4.8450403933721396e-39, 7.678871536654628e-38, 1.217019122422732e-36] [code units]

deduced:
  alpha = 3 - mrn_pow = -0.5
  s (edges) max = 0.001 min = 1e-05 [m]
  grains sizes (edges) (clipped) = [1e-05, 2.5118864315095822e-05, 6.309573444801929e-05, 0.00015848931924611142, 0.00039810717055349735, 0.001] [m]
  mrn_weight = [0.06498813249567935, 0.10299924878316286, 0.16324280822504375, 0.2587224154741067, 0.4100473950220074]
  sum(mrn_weight) = 1.0
  S_mean = 0.000345165295230342 S_mean_init = 0.00037000000000000005 (diff = -2.483470476965805e-05)
 -------------------------
Total mass : 9.210019838371326e-09
----- SPH Solver configuration -----
[
    {
        "artif_viscosity": {
            "alpha_max": 1.0,
            "alpha_min": 0.0,
            "alpha_u": 1.0,
            "beta_AV": 2.0,
            "sigma_decay": 0.1,
            "type": "varying_cd10"
        },
        "boundary_config": {
            "bc_type": "periodic"
        },
        "cfl_config": {
            "cfl_cour": 0.0,
            "cfl_force": 0.0,
            "cfl_multiplier_stiffness": 2.0,
            "eta_sink": 0.05
        },
        "combined_dtdiv_divcurlv_compute": false,
        "debug_dump_filename": "",
        "do_debug_dump": false,
        "dust_config": {
            "drag_mode": {
                "gamma": 1.4,
                "grains_densities": [
                    3872442.9558226797,
                    3872442.9558226797,
                    3872442.9558226797,
                    3872442.9558226797,
                    3872442.9558226797
                ],
                "grains_sizes": [
                    1.0594356624496489e-16,
                    2.661182065564636e-16,
                    6.684587122268445e-16,
                    1.6790923692669784e-15,
                    4.217689339612995e-15
                ],
                "type": "epstein_drag"
            },
            "mode": {
                "ndust": 5,
                "pure_diffusion_mode": false,
                "type": "monofluid_tvi"
            }
        },
        "enable_particle_reordering": false,
        "eos_config": {
            "Tvec": "f64_3",
            "cs": 0.31394308776061347,
            "eos_type": "isothermal"
        },
        "epsilon_h": 1e-06,
        "ext_force_config": {
            "force_list": [
                {
                    "R0": 1.0,
                    "central_mass": 1.0,
                    "force_type": "vertical_disc_potential"
                },
                {
                    "eta": 5.0,
                    "force_type": "velocity_dissipation"
                }
            ]
        },
        "gpart_mass": 0.0,
        "h_iter_per_subcycles": 50,
        "h_max_subcycles_count": 100,
        "htol_up_coarse_cycle": 1.1,
        "htol_up_fine_cycle": 1.1,
        "kernel_id": "M6<f64>",
        "mhd_config": {
            "mhd_type": "none"
        },
        "particle_killing": [],
        "particle_reordering_step_freq": 1000,
        "save_dt_to_fields": false,
        "scheduler_config": {
            "merge_load_value": 0,
            "split_load_value": 0
        },
        "self_grav_config": {
            "softening_length": 1e-09,
            "softening_mode": "plummer",
            "type": "none"
        },
        "show_cfl_detail": false,
        "show_ghost_zone_graph": false,
        "show_neigh_stats": false,
        "smoothing_length_config": {
            "type": "density_based"
        },
        "time_state": {
            "cfl_multiplier": 0.01,
            "dt_sph": 0.0,
            "time": 0.0
        },
        "tree_reduction_level": 3,
        "type_id": "sycl::vec<f64,3>",
        "unit_sys": {
            "unit_current": 1.0,
            "unit_length": 149597870700.0,
            "unit_lumint": 1.0,
            "unit_mass": 1.98847e+30,
            "unit_qte": 1.0,
            "unit_temperature": 1.0,
            "unit_time": 31536000.0
        },
        "use_two_stage_search": true
    }
]
------------------------------------

---------------------------- WARNING ----------------------------
Warning: Experimental features are enabled
-----------------------------------------------------------------
Warning: Dust config != None is work in progress, use it at your own risk     [SPH::config][rank=0]
SPH setup: generating particles ...
SPH setup: Nstep = 11520 ( 1.2e+04 ) Ntotal = 11520 ( 1.2e+04 rank min = 3.6e+06 max = 1.2e+04) rate = 1.152000e+04 N.s^-1
SPH setup: the generation step took : 0.00556226 s
SPH setup: final particle count = 11520 beginning injection ...
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     : 21.41 us   (87.4%)
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.23 us    (0.1%)
   patch tree reduce : 981.00 ns  (0.1%)
   gen split merge   : 971.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.1%)
   LB compute        : 825.02 us  (98.6%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (0.5%)
Info: patch count stable after 1 runs npatch = 1                      [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
SPH setup: injected        11520 / 11520 => 100.0% | ranks with patchs = 1 / 1  <- global loop -> (msg count : 0)
SPH setup: the injection step took : 0.009316922 s
Info: injection perf report:                                                    [SPH setup][rank=0]
+======+====================+=======+=============+=============+=============+
| rank | rank get (sum/max) |  MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+====================+=======+=============+=============+=============+
| 0    |      0.00s / 0.00s | 0.00s |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+--------------------+-------+-------------+-------------+-------------+
SPH setup: the setup took : 0.018995153 s
Current part mass : 7.99480888747511e-13
disc barycenter = (-0.002604440080080894, -0.0030073483626459024, -0.004253032841234377)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.05 us    (68.7%)
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (0.6%)
   patch tree reduce : 781.00 ns  (0.2%)
   gen split merge   : 631.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 374.77 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.77 us    (0.7%)
---------------- t = 0, dt = 0 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 34.18 us   (8.7%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 344.24 us  (87.7%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.34 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7333333333333334
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.005729768176177965 unconverged cnt = 2400
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.8666666666666666
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.006302744993795762 unconverged cnt = 1680
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.8666666666666666
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.006933019493175339 unconverged cnt = 1200
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.9833333333333333
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.007626321442492873 unconverged cnt = 720
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.25
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.008388953586742161 unconverged cnt = 480
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.25
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.009227848945416377 unconverged cnt = 480
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.5333333333333332
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010150633839958016 unconverged cnt = 240
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6666666666666667
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.011165697223953818 unconverged cnt = 240
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8333333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (3.343926464282806e-25,-3.970347276040739e-25,3.862844297574295e-24)
    sum e = 1.6209678063270708e-09
    sum de = -2.726366292190364e-41
Info: cfl dt = 3.343170737703082e-05 cfl multiplier : 0.01                     [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 8.9118e+03 | 11520 |      1 | 1.293e+00 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr)                                             [sph::Model][rank=0]

Timestep loop

436 analysis_dust_mass = shamrock.model_sph.analysisDustMass(model=model)
437
438 t_start = model.get_time()
439
440 dust_injected = False
441
442 idust_analysis = 0
443
444
445 def dust_mass_analysis():
446     global idust_analysis
447     dust_mass = analysis_dust_mass.get_dust_mass()
448     save_analysis_data("dust_mass.json", "dust_mass", dust_mass, idust_analysis)
449     idust_analysis += 1
450
451
452 tnext = 0
453 for j in range(1000):
454     if tlist[j] >= t_start:
455         if j > 0:
456             model.evolve_until(tlist[j])
457             # model.timestep()
458
459             if dust_injected:
460                 dust_mass_analysis()
461
462         if j == iinject:
463             for k in range(ndust):
464
465                 def compute_sj_new(patchdata):
466                     return compute_sj_new_j(patchdata, k)
467
468                 model.overwrite_field_value_f64("s_j", compute_sj_new, k)
469
470                 model.set_cfl_cour(0.1)
471                 model.set_cfl_force(0.1)
472
473             dust_injected = True
474             dust_mass_analysis()
475
476             model.set_dt(0.0)  # to help the corrector on next step after adding dust
477
478         analyse_and_plot(j)
479
480         dump_helper.write_dump(j, purge_old_dumps=True, keep_first=1, keep_last=3)
481
482     if tlist[j] >= 5.0:
483         break
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[0. 0. 0. ... 0. 0. 0.]
(11520, 3)
[[0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 ...
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]]
compute original rho
Info: Dumping state to _to_trash/dusty_settle/dump/0000000.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.92 us   (70.3%)
Info: dump to _to_trash/dusty_settle/dump/0000000.sham                      [Shamrock Dump][rank=0]
              - took 1.87 ms, bandwidth = 1.58 GB/s
Info: evolve_until (target_time = 0.10s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0, dt = 3.343170737703082e-05 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.50 us    (0.7%)
   patch tree reduce : 1.84 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.3%)
   LB compute        : 456.15 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8333333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1179317104421023e-29,-1.327354883177756e-29,7.905206117939123e-29)
    sum a = (3.193761506521767e-25,4.998218766719274e-25,-2.9539397569685785e-24)
    sum e = 1.620967828175092e-09
    sum de = -8.395386905508541e-13
Info: cfl dt = 0.0011364143244489415 cfl multiplier : 0.34                     [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0552e+04 | 11520 |      1 | 2.841e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.42366615149784864 (tsim/hr)                           [sph::Model][rank=0]
---------------- t = 3.343170737703082e-05, dt = 0.0011364143244489415 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.5%)
   patch tree reduce : 1.98 us    (0.5%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 350.22 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8333333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.7387193604661927e-28,5.6972291526782655e-28,-1.3757832401746684e-27)
    sum a = (-2.3051399939752598e-25,4.652359504942774e-26,8.634593135754305e-25)
    sum e = 1.6209920742385098e-09
    sum de = -2.9633411955188367e-11
Info: cfl dt = 0.0018571515006096026 cfl multiplier : 0.56                     [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9375e+04 | 11520 |      1 | 2.926e-01 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.983162222814029 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.0011698460318259724, dt = 0.0018571515006096026 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.8%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 304.44 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8333333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.66679005540886e-28,3.9855694938561055e-28,4.4380104521763496e-27)
    sum a = (-4.8776767584115995e-26,-5.245057646997002e-26,5.4534272436342985e-25)
    sum e = 1.620961815866885e-09
    sum de = -7.742434858816783e-11
Info: cfl dt = 0.0023145843013965325 cfl multiplier : 0.7066666666666667       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2967e+04 | 11520 |      1 | 2.681e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.936334126998265 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.003026997532435575, dt = 0.0023145843013965325 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (2.0%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 295.93 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8333333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.108201596745365e-28,1.8525065290962205e-28,5.148092124524566e-27)
    sum a = (-6.8653650448907005e-25,8.680904947972653e-25,-1.3633568109085746e-25)
    sum e = 1.620772282919312e-09
    sum de = -1.3815506448605325e-10
Info: cfl dt = 0.002595989156845896 cfl multiplier : 0.8044444444444444        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2586e+04 | 11520 |      1 | 2.705e-01 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.80282112330537 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.005341581833832107, dt = 0.002595989156845896 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (1.9%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 300.86 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 us    (63.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8333333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.8311358186585376e-27,3.5041391207374364e-27,-9.941143412875024e-27)
    sum a = (1.8730623211883225e-25,6.939556190127592e-26,-5.9078795139371565e-25)
    sum e = 1.6203649073947135e-09
    sum de = -2.0772903838151745e-10
Info: cfl dt = 0.002762381515764535 cfl multiplier : 0.8696296296296296        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2595e+04 | 11520 |      1 | 2.705e-01 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.55468639407691 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.007937570990678003, dt = 0.002762381515764535 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (2.2%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1.38 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.5%)
   LB compute        : 272.47 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (74.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8333333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1794814107545704e-27,2.6591344454964595e-27,-3.1953675255669716e-27)
    sum a = (1.0415439297989409e-25,1.669634291140415e-25,5.4534272436342985e-25)
    sum e = 1.619711109612258e-09
    sum de = -2.8333683232436565e-10
Info: cfl dt = 0.002854883862869969 cfl multiplier : 0.9130864197530864        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2579e+04 | 11520 |      1 | 2.706e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.75597660535805 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.010699952506442538, dt = 0.002854883862869969 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (1.9%)
   patch tree reduce : 2.37 us    (0.7%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 316.06 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8333333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.969812667089323e-28,3.2705554814243e-27,9.231061740526807e-27)
    sum a = (-2.755972088581644e-28,-9.284046229012245e-25,-6.362331784240015e-25)
    sum e = 1.618799864599149e-09
    sum de = -3.630249937995722e-10
Info: cfl dt = 0.002900957965648975 cfl multiplier : 0.9420576131687243        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1948e+04 | 11520 |      1 | 2.746e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.42363370618174 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.013554836369312507, dt = 0.002900957965648975 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.6%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 338.25 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (61.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8333333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1468485095220192e-27,-9.862815925275528e-28,8.520980068178591e-27)
    sum a = (-1.2882888015986332e-25,7.83343624540574e-25,1.8178090812114326e-24)
    sum e = 1.6176296427686523e-09
    sum de = -4.454258682680339e-10
Info: cfl dt = 0.002918469439697652 cfl multiplier : 0.9613717421124829        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8573e+04 | 11520 |      1 | 2.987e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.96816005502676 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.01645579433496148, dt = 0.002918469439697652 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.6%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.58 us    (0.4%)
   LB compute        : 345.09 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8333333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7092954943123784e-27,3.782737693277526e-27,-1.4201633446964319e-27)
    sum a = (1.7298418040707282e-25,2.832142544475768e-26,-6.362331784240015e-25)
    sum e = 1.6162035308438502e-09
    sum de = -5.29569493101824e-10
Info: cfl dt = 0.0029188963960656202 cfl multiplier : 0.9742478280749886       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1720e+04 | 11520 |      1 | 2.761e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.0495133518611 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.019374263774659135, dt = 0.0029188963960656202 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (1.8%)
   patch tree reduce : 2.45 us    (0.7%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 338.31 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8333333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.639564966629848e-28,2.763650392762526e-27,-4.260490034089296e-27)
    sum a = (4.6925118403798455e-25,4.954885674826534e-25,-2.2268161244840054e-24)
    sum e = 1.614526559297825e-09
    sum de = -6.147564681613358e-10
Info: cfl dt = 0.0029095627202200634 cfl multiplier : 0.9828318853833258       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5801e+04 | 11520 |      1 | 3.218e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.65594606279689 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.022293160170724753, dt = 0.0029095627202200634 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (1.9%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 322.08 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8333333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0337455994192392e-27,4.887111700632474e-27,-1.8462123481053614e-26)
    sum a = (-7.856283577946264e-27,-3.8015745751497105e-25,1.3633568109085746e-25)
    sum e = 1.612604296143226e-09
    sum de = -7.004724961120517e-10
Info: cfl dt = 0.0028950954757789543 cfl multiplier : 0.9885545902555505       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1665e+04 | 11520 |      1 | 2.765e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.883153698782166 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.025202722890944815, dt = 0.0028950954757789543 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (1.6%)
   patch tree reduce : 2.11 us    (0.5%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.3%)
   LB compute        : 367.20 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8333333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.169138577185841e-28,2.512646050075891e-27,2.5562940204535773e-26)
    sum a = (7.636380890248576e-26,-1.129572376920749e-25,1.272466356848003e-24)
    sum e = 1.6104421594846123e-09
    sum de = -7.86330128927287e-10
Info: cfl dt = 0.002878382326848975 cfl multiplier : 0.9923697268370336        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1088e+04 | 11520 |      1 | 2.804e-01 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.17347693479742 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.02809781836672377, dt = 0.002878382326848975 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.9%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 283.64 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (63.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8333333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.586307000297499e-28,2.574297007181851e-27,-1.7041960136357183e-26)
    sum a = (-1.942338871715517e-25,4.944529576770385e-25,1.4088020379388605e-24)
    sum e = 1.6080451312427335e-09
    sum de = -8.720290580086427e-10
Info: cfl dt = 0.0028611949359442492 cfl multiplier : 0.9949131512246892       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2855e+04 | 11520 |      1 | 2.688e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.548179503578396 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.030976200693572743, dt = 0.0028611949359442492 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.7%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.34 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 303.93 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8333333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.865521273673509e-28,4.863202691499083e-27,5.538637044316084e-26)
    sum a = (8.788576227804484e-26,-3.613911960378336e-25,2.1813708974537194e-24)
    sum e = 1.6054176818235857e-09
    sum de = -9.57329037828544e-10
Info: cfl dt = 0.0028445734603885983 cfl multiplier : 0.9966087674831261       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2717e+04 | 11520 |      1 | 2.697e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.19432478922754 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.03383739562951699, dt = 0.0028445734603885983 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.7%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 275.44 us  (84.3%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8333333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.670450357225153e-28,2.6108304071485384e-27,1.4201633446964318e-26)
    sum a = (3.087663151243057e-25,-4.0720068564440986e-25,1.1134080622420027e-24)
    sum e = 1.6025638155728633e-09
    sum de = -1.0420308168387042e-09
Info: cfl dt = 0.0028290152576735915 cfl multiplier : 0.997739178322084        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5723e+04 | 11520 |      1 | 3.225e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.754836127930236 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.03668196908990559, dt = 0.0028290152576735915 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.9%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 294.38 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8333333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5547051315361173e-27,1.3936992253407913e-27,-2.130245017044648e-26)
    sum a = (-4.4686652789576526e-26,1.1839384001715641e-26,1.1815759027874313e-24)
    sum e = 1.5994872450610935e-09
    sum de = -1.1259608163671413e-09
Info: cfl dt = 0.0028149807166004057 cfl multiplier : 0.998492785548056        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2578e+04 | 11520 |      1 | 2.706e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.64196475132694 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.03951098434757919, dt = 0.0028149807166004057 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.81 us    (1.9%)
   patch tree reduce : 2.48 us    (0.7%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 336.14 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8333333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.289511460950958e-28,2.019762238305002e-27,-3.4083920272714366e-26)
    sum a = (-1.1826793491096683e-25,1.1907599312658543e-25,-9.089045406057164e-26)
    sum e = 1.5961912740908766e-09
    sum de = -1.208970488454507e-09
Info: cfl dt = 0.0028026280406701783 cfl multiplier : 0.9989951903653708       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1942e+04 | 11520 |      1 | 2.747e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.89551650345669 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.04232596506417959, dt = 0.0028026280406701783 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.5%)
   patch tree reduce : 1.98 us    (0.5%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.3%)
   LB compute        : 360.56 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8333333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.939251702643088e-28,2.5044224490123358e-27,1.1361306757571455e-26)
    sum a = (-1.2473081232666145e-25,-3.690972856307137e-25,-1.726918627150861e-24)
    sum e = 1.5926789272360673e-09
    sum de = -1.2909258841578933e-09
Info: cfl dt = 0.0027920098300952567 cfl multiplier : 0.9993301269102473       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2277e+04 | 11520 |      1 | 2.725e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.02743784468512 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.04512859310484977, dt = 0.0027920098300952567 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.7%)
   patch tree reduce : 2.16 us    (0.6%)
   gen split merge   : 1.36 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 329.15 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8333333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.366189953979382e-28,7.898151393941812e-28,4.402506368558939e-26)
    sum a = (-1.6152672905199953e-25,3.283903876609063e-25,-7.725688595148589e-25)
    sum e = 1.5889530444007556e-09
    sum de = -1.371704137857762e-09
Info: cfl dt = 0.002783117527011842 cfl multiplier : 0.9995534179401648        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2674e+04 | 11520 |      1 | 2.700e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.23304640509139 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.047920602934945024, dt = 0.002783117527011842 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (2.0%)
   patch tree reduce : 2.35 us    (0.7%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 301.93 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8333333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.642961559101757e-28,2.677460403095624e-27,6.106702382194657e-26)
    sum a = (-2.8082443621838865e-25,4.0989562160133063e-25,-2.8630493029080065e-24)
    sum e = 1.5850163510912907e-09
    sum de = -1.4511942619120515e-09
Info: cfl dt = 0.002775896061072372 cfl multiplier : 0.9997022786267765        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7523e+04 | 11520 |      1 | 3.070e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.635076795696094 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.05070372046195687, dt = 0.002775896061072372 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.7%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.4%)
   LB compute        : 324.89 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8333333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3098453721350015e-27,3.928707367110947e-27,1.5621796791660752e-26)
    sum a = (-1.9924415585035824e-25,-8.739580418800177e-26,1.7041960136357182e-24)
    sum e = 1.580871463863103e-09
    sum de = -1.529287279496785e-09
Info: cfl dt = 0.0027702545033465925 cfl multiplier : 0.9998015190845176       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1750e+04 | 11520 |      1 | 2.759e-01 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.21671861373195 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.05347961652302924, dt = 0.0027702545033465925 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.8%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 308.66 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8333333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.748573202677423e-27,2.9963840919590566e-27,4.402506368558939e-26)
    sum a = (4.635593023102574e-25,-7.636663065069386e-25,-7.271236324845731e-25)
    sum e = 1.5765210316083856e-09
    sum de = -1.6058794354621786e-09
Info: cfl dt = 0.002766208519575653 cfl multiplier : 0.9998676793896785        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0794e+04 | 11520 |      1 | 2.824e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.31564895781356 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.05624987102637583, dt = 0.002766208519575653 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (2.1%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.5%)
   LB compute        : 275.72 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8333333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.517956211035098e-28,-5.279685347835695e-29,3.9764573651500096e-26)
    sum a = (-1.2996154825138952e-26,4.083734040978779e-25,2.4994874866657203e-25)
    sum e = 1.571967574130789e-09
    sum de = -1.6808736902248505e-09
Info: cfl dt = 0.0027636934457384655 cfl multiplier : 0.9999117862597856       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4679e+04 | 11520 |      1 | 3.322e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.978202359113393 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.059016079545951484, dt = 0.0027636934457384655 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (2.0%)
   patch tree reduce : 2.15 us    (0.8%)
   gen split merge   : 1.56 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 265.00 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8333333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4324764959546955e-28,2.6968751632193478e-27,5.964686047725014e-26)
    sum a = (-3.9254031103779145e-25,4.787256476307923e-25,-4.9989749733314405e-25)
    sum e = 1.5672135950818708e-09
    sum de = -1.7541765079551667e-09
Info: cfl dt = 0.0027626462634243306 cfl multiplier : 0.9999411908398571       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3171e+04 | 11520 |      1 | 2.668e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.28498953985951 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.06177977299168995, dt = 0.0027626462634243306 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (1.8%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 325.95 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8333333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8521695215744632e-27,4.116640802024016e-27,3.692424696210723e-26)
    sum a = (1.8282170917378257e-26,3.845803085256956e-25,2.7267136218171492e-25)
    sum e = 1.5622616142803516e-09
    sum de = -1.8256974589232258e-09
Info: cfl dt = 0.002763006637984925 cfl multiplier : 0.999960793893238         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3357e+04 | 11520 |      1 | 2.657e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.43121859598145 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.06454241925511428, dt = 0.002763006637984925 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.8%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 300.34 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (64.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8333333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2341771646207521e-27,5.0491936126700304e-27,-6.816784054542873e-26)
    sum a = (-3.2489454991214603e-25,1.9437442643993052e-25,1.3633568109085746e-25)
    sum e = 1.5571141877678904e-09
    sum de = -1.8953488669333203e-09
Info: cfl dt = 0.0027646611741654176 cfl multiplier : 0.999973862595492        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3450e+04 | 11520 |      1 | 2.651e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.51613283277695 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.06730542589309921, dt = 0.0027646611741654176 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.7%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 315.72 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8333333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.6065002912880036e-27,5.3238029853057546e-27,5.1125880409071546e-26)
    sum a = (1.6554920348620183e-25,-4.856175817209527e-25,-2.9539397569685782e-25)
    sum e = 1.5517740323355631e-09
    sum de = -1.9630441476512533e-09
Info: cfl dt = 0.0027675773976861607 cfl multiplier : 0.9999825750636614       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9140e+04 | 11520 |      1 | 2.943e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.81551717484146 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.07007008706726463, dt = 0.0027675773976861607 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.9%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 296.46 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8333333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4703746559484959e-27,3.0398449903634516e-27,1.9882286825750048e-26)
    sum a = (1.03315791951565e-25,-2.0554542614332168e-25,-1.8178090812114328e-25)
    sum e = 1.5462439176577683e-09
    sum de = -2.0286998599745373e-09
Info: cfl dt = 0.0027717239991521514 cfl multiplier : 0.9999883833757742       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2842e+04 | 11520 |      1 | 2.689e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.05264149745198 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.07283766446495078, dt = 0.0027717239991521514 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (1.9%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 303.33 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8333333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.270129687476761e-27,2.8576904835546604e-27,-1.1361306757571454e-25)
    sum a = (5.977854361043797e-26,2.257747809488906e-25,4.0900704327257236e-25)
    sum e = 1.540526671248127e-09
    sum de = -2.0922354248279646e-09
Info: cfl dt = 0.002777053169836333 cfl multiplier : 0.9999922555838495        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3271e+04 | 11520 |      1 | 2.662e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.47983203593461 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.07560938846410294, dt = 0.002777053169836333 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (1.9%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 310.48 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8333333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1644581114976244e-27,4.0824293393166425e-27,4.260490034089296e-26)
    sum a = (3.537622858716187e-26,1.929814389325168e-26,-2.272261351514291e-25)
    sum e = 1.5346252295180066e-09
    sum de = -2.1535725933282524e-09
Info: cfl dt = 0.0027835177593060864 cfl multiplier : 0.9999948370558996       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3579e+04 | 11520 |      1 | 2.643e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.819147321097226 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.07838644163393926, dt = 0.0027835177593060864 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (1.8%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 317.52 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (71.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8333333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0998710141111753e-27,3.849447765848456e-27,-4.8285553719678683e-26)
    sum a = (1.2360894742770075e-25,3.682170867257417e-25,2.0563965231204332e-24)
    sum e = 1.5285426601770543e-09
    sum de = -2.2126354492726507e-09
Info: cfl dt = 0.0027910710889660867 cfl multiplier : 0.9999965580372665       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2312e+04 | 11520 |      1 | 2.723e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.80543596836897 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.08116995939324535, dt = 0.0027910710889660867 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (1.9%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 303.98 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8333333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.320709846861421e-28,5.362778868038318e-27,4.8285553719678683e-26)
    sum a = (3.4815180158956824e-26,-1.840606534835277e-25,8.293753933027163e-25)
    sum e = 1.5222821828701325e-09
    sum de = -2.2693504234943737e-09
Info: cfl dt = 0.0027996670641624896 cfl multiplier : 0.9999977053581777       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3430e+04 | 11520 |      1 | 2.653e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.880246504556204 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.08396103048221144, dt = 0.0027996670641624896 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.8%)
   patch tree reduce : 2.24 us    (0.7%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 304.03 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8333333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.5851492981355935e-28,4.0767471017833764e-27,1.0509208750753596e-25)
    sum a = (8.275624587911233e-26,-5.751256574766154e-26,5.2262011084828695e-25)
    sum e = 1.5158471891390007e-09
    sum de = -2.323646334474539e-09
Info: cfl dt = 0.0028091848604463064 cfl multiplier : 0.9999984702387851       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9345e+04 | 11520 |      1 | 2.928e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.42248296356621 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.08676069754637393, dt = 0.0028091848604463064 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (1.8%)
   patch tree reduce : 2.17 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.55 us    (0.5%)
   LB compute        : 322.63 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8333333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.589278254238654e-28,4.092329929433219e-27,7.952914730300019e-26)
    sum a = (-3.309682583499413e-25,8.570319703578083e-26,1.0111563014238595e-24)
    sum e = 1.509241436072544e-09
    sum de = -2.375452994503923e-09
Info: cfl dt = 0.002934758369980231 cfl multiplier : 0.99999898015919          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4003e+04 | 11520 |      1 | 2.618e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.629317016351465 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.08956988240682023, dt = 0.002934758369980231 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.8%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 304.54 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8333333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.911353998652417e-27,4.5450078805620064e-27,4.544522703028582e-26)
    sum a = (-7.51114816412758e-26,1.4512978182679062e-25,-6.362331784240015e-25)
    sum e = 1.5021962254697289e-09
    sum de = -2.426801398981762e-09
Info: cfl dt = 0.0029470870241219958 cfl multiplier : 0.9999993201061267       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3888e+04 | 11520 |      1 | 2.625e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.25065372286924 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.09250464077680047, dt = 0.0029470870241219958 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (2.1%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.5%)
   LB compute        : 263.78 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8333333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7572751630784146e-27,5.0599193109543816e-27,3.692424696210723e-26)
    sum a = (-2.2118015896592345e-25,-1.694417068751037e-25,-3.1811658921200077e-25)
    sum e = 1.4949668604520988e-09
    sum de = -2.4751618651541057e-09
Info: cfl dt = 0.002960386780403206 cfl multiplier : 0.9999995467374179        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4107e+04 | 11520 |      1 | 2.612e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.6212833121594 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.09545172780092247, dt = 0.002960386780403206 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (2.0%)
   patch tree reduce : 18.17 us   (5.8%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 274.90 us  (88.0%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8333333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.62729253355545e-27,4.094771545616876e-27,-3.4083920272714366e-26)
    sum a = (1.6044918510642665e-25,8.098595606842389e-26,1.7041960136357183e-25)
    sum e = 1.4875664115303437e-09
    sum de = -2.520615344922288e-09
Info: cfl dt = 0.002974529657198092 cfl multiplier : 0.9999996978249452        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3603e+04 | 11520 |      1 | 2.642e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.33799004453859 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.09841211458132568, dt = 0.0015878854186743285 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.5%)
   patch tree reduce : 1.95 us    (0.5%)
   gen split merge   : 971.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.3%)
   LB compute        : 378.92 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8333333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8076323794840584e-27,4.5940493357887096e-27,1.1929372095450029e-25)
    sum a = (-2.7764020070767784e-25,-4.575329863705936e-25,8.293753933027163e-25)
    sum e = 1.4834897764842904e-09
    sum de = -2.542345420031144e-09
Info: cfl dt = 0.0029827477220610178 cfl multiplier : 0.9999997985499635       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3987e+04 | 11520 |      1 | 2.619e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.82711132555428 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 39                                                      [SPH][rank=0]
Info: time since start : 24.972770675000003 (s)                                       [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[0. 0. 0. ... 0. 0. 0.]
(11520, 3)
[[0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 ...
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]]
compute original rho
Info: Dumping state to _to_trash/dusty_settle/dump/0000001.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.85 us   (70.1%)
Info: dump to _to_trash/dusty_settle/dump/0000001.sham                      [Shamrock Dump][rank=0]
              - took 1.82 ms, bandwidth = 1.63 GB/s
Info: evolve_until (target_time = 0.20s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.1, dt = 0.0029827477220610178 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.37 us    (1.0%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 311.73 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 us    (63.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8333333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.9835809296022677e-27,2.8017906747342817e-27,-4.8285553719678683e-26)
    sum a = (2.2424544467365976e-25,-8.513857573124739e-26,3.6356181624228657e-25)
    sum e = 1.4758944180990438e-09
    sum de = -2.584582306584861e-09
Info: cfl dt = 0.002997816246089587 cfl multiplier : 0.9999998656999756        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2822e+04 | 11520 |      1 | 3.510e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.593733652486712 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.10298274772206102, dt = 0.002997816246089587 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (2.3%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.5%)
   LB compute        : 264.46 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.34 us    (60.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8333333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5628351597021672e-27,3.1019401592603224e-27,-3.4083920272714366e-26)
    sum a = (-2.8480300505665833e-25,-6.175079522001519e-26,-3.294778959695722e-25)
    sum e = 1.4680818968749697e-09
    sum de = -2.6223661526416153e-09
Info: cfl dt = 0.0030139749327308145 cfl multiplier : 0.9999999104666504       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4724e+04 | 11520 |      1 | 2.576e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.89849622404166 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.10598056396815062, dt = 0.0030139749327308145 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.8%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 1.45 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 302.77 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8333333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.1842411340332388e-27,2.9508809445747094e-27,-1.9882286825750048e-26)
    sum a = (-7.39242702540453e-26,-3.150832106225709e-25,-1.3065502771207174e-25)
    sum e = 1.4601205059196242e-09
    sum de = -2.657035395304973e-09
Info: cfl dt = 0.0030308538263488388 cfl multiplier : 0.9999999403111003       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5081e+04 | 11520 |      1 | 2.555e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.460026270269815 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.10899453890088143, dt = 0.0030308538263488388 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (2.1%)
   patch tree reduce : 1.97 us    (0.7%)
   gen split merge   : 1.44 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 266.54 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8333333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.0905031811233247e-27,1.6141410152089035e-27,2.5562940204535773e-26)
    sum a = (6.875932979427394e-26,2.844044328011615e-25,5.936282780831085e-25)
    sum e = 1.452014348126808e-09
    sum de = -2.688525651769204e-09
Info: cfl dt = 0.003048261797972788 cfl multiplier : 0.9999999602074002        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5166e+04 | 11520 |      1 | 2.551e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.77853389038631 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.11202539272723026, dt = 0.003048261797972788 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.8%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 283.77 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8333333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.6646801752737118e-27,3.389559891849255e-27,4.260490034089296e-26)
    sum a = (2.4516597909351204e-25,-7.896701956708995e-25,7.384849392421446e-25)
    sum e = 1.4437706486561804e-09
    sum de = -2.7167858626095504e-09
Info: cfl dt = 0.0030661942212766606 cfl multiplier : 0.9999999734716001       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4714e+04 | 11520 |      1 | 2.576e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.59331759401523 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.11507365452520305, dt = 0.0030661942212766606 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (2.1%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 287.52 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8333333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6440868419403466e-27,-6.68752627902133e-28,0)
    sum a = (4.0472368327607944e-26,3.1308442127991835e-26,8.222745765792341e-25)
    sum e = 1.435396905899538e-09
    sum de = -2.7417699107009726e-09
Info: cfl dt = 0.003084484637673868 cfl multiplier : 0.9999999823144           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4374e+04 | 11520 |      1 | 2.596e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.51845554134747 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.1181398487464797, dt = 0.003084484637673868 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (2.0%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 288.67 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8333333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.833065626813278e-27,6.86457758375958e-28,2.8403266893928638e-27)
    sum a = (2.904144970645356e-25,-8.440921658963358e-26,1.1545927992381991e-24)
    sum e = 1.426901343579954e-09
    sum de = -2.763435227402178e-09
Info: cfl dt = 0.0031031231481249305 cfl multiplier : 0.9999999882095999       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4123e+04 | 11520 |      1 | 2.611e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.530636637667904 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.12122433338415357, dt = 0.0031031231481249305 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (2.0%)
   patch tree reduce : 2.33 us    (0.8%)
   gen split merge   : 992.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 262.61 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8333333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.464023502270048e-28,2.460608941493305e-28,-4.8285553719678683e-26)
    sum a = (-1.8285413133606053e-25,3.669075717560504e-25,-1.0810993461501588e-25)
    sum e = 1.4182924997201702e-09
    sum de = -2.781744973712185e-09
Info: cfl dt = 0.0031165844915882527 cfl multiplier : 0.9999999921397332       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5306e+04 | 11520 |      1 | 3.263e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.23750674969958 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.1243274565322785, dt = 0.0031165844915882527 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.7%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 324.09 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8333333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8505881182093655e-27,2.089805128660876e-27,4.544522703028582e-26)
    sum a = (2.0609640670750208e-25,-6.427413038735689e-26,-7.448756742932785e-25)
    sum e = 1.409594544153811e-09
    sum de = -2.796638424909904e-09
Info: cfl dt = 0.0031251577617362586 cfl multiplier : 0.9999999947598223       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4027e+04 | 11520 |      1 | 2.617e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.87970022048509 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.12744404102386675, dt = 0.0031251577617362586 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.3%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 269.61 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8333333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.004057256917499e-28,1.2170312282254043e-27,2.5562940204535773e-26)
    sum a = (6.677877890922727e-26,3.01549000361348e-28,1.1006265921397348e-24)
    sum e = 1.400831540113074e-09
    sum de = -2.808093192433603e-09
Info: cfl dt = 0.003135592210747081 cfl multiplier : 0.9999999965065482        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4221e+04 | 11520 |      1 | 2.605e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.18714574605183 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.130569198785603, dt = 0.003135592210747081 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.9%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.09 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 290.55 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8333333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.0870948963257235e-28,1.3188813557409467e-27,5.964686047725014e-26)
    sum a = (1.6838572616797484e-25,9.334608704813867e-26,4.60132923681644e-25)
    sum e = 1.3920088986091846e-09
    sum de = -2.8161360528574468e-09
Info: cfl dt = 0.003144861958373007 cfl multiplier : 0.9999999976710322        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3920e+04 | 11520 |      1 | 2.623e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.03587921103563 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.13370479099635008, dt = 0.003144861958373007 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (2.1%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 1.59 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 267.78 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8333333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.013935113322008e-29,1.7583167782425175e-27,8.236947399239305e-26)
    sum a = (-2.431618733675349e-25,2.286564081200441e-25,7.214429791057874e-25)
    sum e = 1.3831403626543012e-09
    sum de = -2.8207784596686852e-09
Info: cfl dt = 0.003163884233609955 cfl multiplier : 0.9999999984473549        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1422e+04 | 11520 |      1 | 2.781e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.70820459625952 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.1368496529547231, dt = 0.003163884233609955 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.97 us    (2.2%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 291.42 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8333333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3363268611627669e-27,2.6945253234702905e-27,1.4201633446964318e-26)
    sum a = (-1.208115346648327e-25,1.823842813403342e-25,-6.248718716664301e-26)
    sum e = 1.3742090410903498e-09
    sum de = -2.822057044734344e-09
Info: cfl dt = 0.0031761913351406887 cfl multiplier : 0.9999999989649032       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3642e+04 | 11520 |      1 | 2.640e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.148981221868496 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.14001353718833304, dt = 0.0031761913351406887 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.9%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 294.98 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8333333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5264962569442984e-27,3.2006128713399627e-27,-8.520980068178591e-27)
    sum a = (8.675168690519751e-26,-1.845656644641246e-26,5.794266446361442e-25)
    sum e = 1.3652443389574758e-09
    sum de = -2.819964502960006e-09
Info: cfl dt = 0.0031980414992008486 cfl multiplier : 0.9999999993099354       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3556e+04 | 11520 |      1 | 2.645e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.23195638848345 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.14318972852347372, dt = 0.0031980414992008486 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (1.9%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 299.89 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8333333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.194305091734126e-28,2.822633525653881e-27,-1.4201633446964318e-26)
    sum a = (-1.9247410753201212e-25,-8.580246343646671e-26,5.7374599125735845e-25)
    sum e = 1.35623016954897e-09
    sum de = -2.8145269427671245e-09
Info: cfl dt = 0.0032120392023191305 cfl multiplier : 0.999999999539957        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3435e+04 | 11520 |      1 | 2.652e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.408012448969934 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.14638777002267458, dt = 0.0032120392023191305 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.8%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 309.62 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8333333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.984152727136916e-27,2.4393451627565087e-27,4.260490034089296e-26)
    sum a = (-2.815815555363092e-26,-5.100565903493061e-26,5.5102337774221555e-25)
    sum e = 1.347199463817413e-09
    sum de = -2.8057603202253085e-09
Info: cfl dt = 0.0032290915674587184 cfl multiplier : 0.9999999996933046       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3539e+04 | 11520 |      1 | 2.646e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.70294077853587 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.14959980922499372, dt = 0.0032290915674587184 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (2.1%)
   patch tree reduce : 1.87 us    (0.7%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 267.63 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8333333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.811183350133756e-27,2.330527569192168e-27,-3.9764573651500096e-26)
    sum a = (-4.159816382906268e-27,-2.5309017158843953e-25,8.009721264087876e-25)
    sum e = 1.338154578541506e-09
    sum de = -2.793701889632844e-09
Info: cfl dt = 0.003245310985876025 cfl multiplier : 0.9999999997955363        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3863e+04 | 11520 |      1 | 2.626e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.26206129756653 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.15282890079245243, dt = 0.003245310985876025 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.8%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.5%)
   LB compute        : 310.47 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8333333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7859368306459143e-27,1.182896557232375e-27,1.2497437433328601e-25)
    sum a = (-5.148821680688081e-26,1.5483275573626266e-25,7.271236324845731e-25)
    sum e = 1.3291088078019754e-09
    sum de = -2.778388875883462e-09
Info: cfl dt = 0.0032608280064543886 cfl multiplier : 0.9999999998636909       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3794e+04 | 11520 |      1 | 2.630e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.41418528241293 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.15607421177832845, dt = 0.0032608280064543886 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (1.9%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 316.79 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8333333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0306287388608656e-27,2.3496979221500835e-27,5.6806533787857276e-27)
    sum a = (2.567297449006213e-25,1.7810590752410384e-26,1.2951889703631459e-24)
    sum e = 1.3200750853530547e-09
    sum de = -2.7598715749882114e-09
Info: cfl dt = 0.003283679699281583 cfl multiplier : 0.9999999999091272        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3734e+04 | 11520 |      1 | 2.634e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.565747455537284 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.15933503978478283, dt = 0.003283679699281583 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.2%)
   patch tree reduce : 1.57 us    (0.5%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 265.03 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8333333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.850876065827905e-28,2.1847793409224915e-27,2.8403266893928638e-27)
    sum a = (2.0845883436650177e-25,3.615458459271716e-25,3.976457365150009e-25)
    sum e = 1.3110441424599486e-09
    sum de = -2.7381588031322745e-09
Info: cfl dt = 0.0033103987941744428 cfl multiplier : 0.9999999999394182       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0009e+04 | 11520 |      1 | 2.879e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.054919413712916 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.16261871948406442, dt = 0.0033103987941744428 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (2.1%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 269.67 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.425883714119407e-29,3.9459985129466636e-27,-3.692424696210723e-26)
    sum a = (1.8963524540339679e-25,-2.220100917180693e-25,9.770723811511451e-25)
    sum e = 1.3020169009532258e-09
    sum de = -2.713256203726369e-09
Info: cfl dt = 0.0033349351828325237 cfl multiplier : 0.9999999999596122       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2181e+04 | 11520 |      1 | 2.731e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.636458627100936 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.16592911827823886, dt = 0.0033349351828325237 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.0%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 294.90 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.2700562154858475e-28,2.239707810988291e-27,6.532751385603587e-26)
    sum a = (1.4925870150887115e-25,2.9585584944560677e-25,1.7610025474235756e-24)
    sum e = 1.2930111527094518e-09
    sum de = -2.685214714700938e-09
Info: cfl dt = 0.0033542697329674745 cfl multiplier : 0.9999999999730749       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2185e+04 | 11520 |      1 | 2.731e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.964329983870876 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.16926405346107137, dt = 0.0033542697329674745 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (2.1%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 275.30 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.60332988043234e-28,4.095612805620743e-27,3.1243593583321503e-26)
    sum a = (-7.082918694090683e-26,8.71747436695932e-26,1.0906854487268597e-24)
    sum e = 1.2840525595013833e-09
    sum de = -2.654132126962113e-09
Info: cfl dt = 0.0033757182162419126 cfl multiplier : 0.9999999999820499       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7004e+04 | 11520 |      1 | 3.113e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.787528386243466 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.17261832319403886, dt = 0.0033757182162419126 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (2.1%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.5%)
   LB compute        : 268.77 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.5211653998270676e-28,4.0399038174150254e-27,3.1243593583321503e-26)
    sum a = (-8.1355123356618e-26,2.365219092467816e-25,9.884336879087165e-25)
    sum e = 1.275146727463976e-09
    sum de = -2.62006075570417e-09
Info: cfl dt = 0.0033994599849391407 cfl multiplier : 0.9999999999880332       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6708e+04 | 11520 |      1 | 3.138e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.72338052712581 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.17599404141028077, dt = 0.0033994599849391407 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.5%)
   patch tree reduce : 1.96 us    (0.5%)
   gen split merge   : 1.51 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 351.29 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (71.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.778675591275151e-29,5.09602755731703e-27,4.8285553719678683e-26)
    sum a = (2.846329151798528e-25,2.5805157981656103e-25,1.499692491999432e-24)
    sum e = 1.266299141011507e-09
    sum de = -2.583043878079548e-09
Info: cfl dt = 0.0034278683700856385 cfl multiplier : 0.999999999992022        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3791e+04 | 11520 |      1 | 3.409e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.89675177468825 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.17939350139521992, dt = 0.0034278683700856385 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.6%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 333.27 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (71.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6555517690049872e-27,6.0171890322658505e-27,1.9882286825750048e-26)
    sum a = (-1.1926803879620844e-25,-4.120681765444452e-25,1.3406341973934317e-24)
    sum e = 1.2575095033291087e-09
    sum de = -2.543096517080102e-09
Info: cfl dt = 0.0034502550353563443 cfl multiplier : 0.9999999999946813       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7221e+04 | 11520 |      1 | 3.095e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.87164903295341 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.18282136976530555, dt = 0.0034502550353563443 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.7%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 322.07 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.517869650533761e-28,3.4469075727248766e-27,1.107727408863217e-25)
    sum a = (-1.8307601257951451e-25,-8.163660061608556e-26,4.885361905755726e-25)
    sum e = 1.2488053819549945e-09
    sum de = -2.5003540527065197e-09
Info: cfl dt = 0.0034797772950082464 cfl multiplier : 0.9999999999964541       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1568e+04 | 11520 |      1 | 2.771e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.818294543872106 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1862716248006619, dt = 0.0034797772950082464 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.7%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 324.75 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9535367829612062e-28,3.732866987612316e-27,-1.9882286825750048e-26)
    sum a = (1.7859629471989436e-25,2.009766618238362e-25,7.044010189694302e-25)
    sum e = 1.2401802837695582e-09
    sum de = -2.4548140017438615e-09
Info: cfl dt = 0.003505519256782145 cfl multiplier : 0.999999999997636         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8508e+04 | 11520 |      1 | 2.992e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.874355896239976 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.18975140209567015, dt = 0.003505519256782145 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.6%)
   patch tree reduce : 1.90 us    (0.5%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.4%)
   LB compute        : 332.43 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0599886136292518e-27,4.929110152993323e-27,1.107727408863217e-25)
    sum a = (-1.2359587650944114e-25,4.1466593546259527e-26,2.0450352163628618e-25)
    sum e = 1.231655934209323e-09
    sum de = -2.4065990719861344e-09
Info: cfl dt = 0.0035293717770142593 cfl multiplier : 0.999999999998424        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2238e+04 | 11520 |      1 | 2.727e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.27029282034809 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.1932569213524523, dt = 0.0035293717770142593 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.5%)
   patch tree reduce : 2.18 us    (0.5%)
   gen split merge   : 1.24 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 384.53 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.410257792313322e-29,4.7958783698313856e-27,2.272261351514291e-26)
    sum a = (-1.2581461405522647e-25,-1.2453004199750576e-25,1.2383824365752887e-24)
    sum e = 1.223248451922298e-09
    sum de = -2.3558285613091663e-09
Info: cfl dt = 0.003555566783492773 cfl multiplier : 0.9999999999989493        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2343e+04 | 11520 |      1 | 2.721e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.70108637708184 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.19678629312946655, dt = 0.0032137068705334615 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.1%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 297.48 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.1414408660661116e-28,4.10274339777156e-27,1.9882286825750048e-26)
    sum a = (-9.198227497106155e-26,7.87846600580886e-26,1.4656085717267177e-24)
    sum e = 1.2157642196983882e-09
    sum de = -2.307615343260571e-09
Info: cfl dt = 0.003582281628805015 cfl multiplier : 0.9999999999992996        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2338e+04 | 11520 |      1 | 2.721e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.519608213535285 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 70                                                      [SPH][rank=0]
Info: time since start : 36.548351696000005 (s)                                       [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[0. 0. 0. ... 0. 0. 0.]
(11520, 3)
[[0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 ...
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]]
compute original rho
Info: Dumping state to _to_trash/dusty_settle/dump/0000002.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.44 us   (70.2%)
Info: dump to _to_trash/dusty_settle/dump/0000002.sham                      [Shamrock Dump][rank=0]
              - took 2.99 ms, bandwidth = 987.58 MB/s
Info: evolve_until (target_time = 0.30s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.2, dt = 0.003582281628805015 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.68 us    (1.2%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 741.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 280.96 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.892868901055604e-28,4.7116691655129846e-27,8.520980068178592e-26)
    sum a = (-1.5811694223569639e-25,1.590872068884588e-25,1.3633568109085746e-25)
    sum e = 1.2075814312736704e-09
    sum de = -2.252306681517974e-09
Info: cfl dt = 0.0036103335884016038 cfl multiplier : 0.9999999999995332       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1326e+04 | 11520 |      1 | 3.678e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.06774119148912 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.20358228162880504, dt = 0.0036103335884016038 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (1.9%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 304.77 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2785982994330957e-27,5.4298602213336505e-27,1.0793241419692882e-25)
    sum a = (-3.0593127087009355e-25,-1.5858541010014717e-25,7.384849392421446e-25)
    sum e = 1.199550797338542e-09
    sum de = -2.194503025342604e-09
Info: cfl dt = 0.0036350812258206613 cfl multiplier : 0.9999999999996888       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2401e+04 | 11520 |      1 | 2.717e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.837650593686995 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.20719261521720664, dt = 0.0036350812258206613 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (2.0%)
   patch tree reduce : 2.31 us    (0.7%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 314.51 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.35 us    (91.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.657512836617857e-27,4.279937314878526e-27,7.668882061360732e-26)
    sum a = (1.8663612423071675e-25,-1.7872421413579623e-25,-3.976457365150009e-25)
    sum e = 1.191679685633582e-09
    sum de = -2.1345343932534676e-09
Info: cfl dt = 0.0036581562757336252 cfl multiplier : 0.9999999999997925       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8705e+04 | 11520 |      1 | 2.976e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.96746559859353 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2108276964430273, dt = 0.0036581562757336252 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (1.8%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 320.78 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (71.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.079507482099375e-27,3.58953311545424e-27,1.0935257754162526e-25)
    sum a = (8.399409523778053e-26,2.1095540780287774e-25,4.430909635452868e-25)
    sum e = 1.1839818890852412e-09
    sum de = -2.072546634159079e-09
Info: cfl dt = 0.0036825048991189994 cfl multiplier : 0.9999999999998618       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2491e+04 | 11520 |      1 | 2.711e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.57428797423354 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.21448585271876092, dt = 0.0036825048991189994 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.84 us    (2.4%)
   patch tree reduce : 1.96 us    (0.7%)
   gen split merge   : 1.03 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 268.71 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.57939106320483e-28,5.0791319150412975e-27,1.3065502771207174e-25)
    sum a = (-1.418956860456712e-25,1.0086651000237823e-25,-7.271236324845731e-25)
    sum e = 1.176464742272889e-09
    sum de = -2.0086423839809346e-09
Info: cfl dt = 0.0037118527070818096 cfl multiplier : 0.999999999999908        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5385e+04 | 11520 |      1 | 3.256e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.72073034097212 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.21816835761787992, dt = 0.0037118527070818096 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (2.3%)
   patch tree reduce : 1.94 us    (0.7%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 270.39 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9005551055674954e-27,5.250832089764514e-27,5.538637044316084e-26)
    sum a = (-2.10300425629002e-25,2.3129266969501414e-28,8.407367000602877e-25)
    sum e = 1.1691282883125351e-09
    sum de = -1.9428590394463386e-09
Info: cfl dt = 0.0037885538997075212 cfl multiplier : 0.9999999999999387       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9921e+04 | 11520 |      1 | 2.886e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.3060000904745 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.22188021032496172, dt = 0.0037885538997075212 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.9%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 296.69 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.8242437619764175e-27,5.064936803192191e-27,4.8285553719678683e-26)
    sum a = (-3.693585904177753e-25,6.501718877492217e-25,7.044010189694302e-25)
    sum e = 1.1618922657102972e-09
    sum de = -1.874470414593826e-09
Info: cfl dt = 0.003809490079866977 cfl multiplier : 0.9999999999999591        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2234e+04 | 11520 |      1 | 2.728e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.00169774787242 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.22566876422466925, dt = 0.003809490079866977 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.8%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 295.75 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.5326118637410665e-27,8.772927648513413e-27,4.8285553719678683e-26)
    sum a = (-7.537081780517692e-26,-4.0875765646023417e-26,-6.816784054542873e-26)
    sum e = 1.1548824554379288e-09
    sum de = -1.8045663598102944e-09
Info: cfl dt = 0.0038295775974493624 cfl multiplier : 0.9999999999999728       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6537e+04 | 11520 |      1 | 3.153e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.49548094382578 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.22947825430453622, dt = 0.0038295775974493624 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (2.1%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.96 us    (0.7%)
   LB compute        : 269.50 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.261278507050403e-27,7.300121140728664e-27,1.2639453767798244e-25)
    sum a = (-1.621478673864932e-25,-7.556069186274685e-26,2.0450352163628618e-25)
    sum e = 1.1481061803196265e-09
    sum de = -1.7333244596217956e-09
Info: cfl dt = 0.0038497197755765987 cfl multiplier : 0.9999999999999819       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1836e+04 | 11520 |      1 | 2.754e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.0670848766236 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.2333078319019856, dt = 0.0038497197755765987 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.5%)
   patch tree reduce : 1.98 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 348.06 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.051662081270597e-27,6.942819343005455e-27,1.15033230920411e-25)
    sum a = (7.070723522884443e-26,-1.355049368579352e-25,5.6806533787857275e-25)
    sum e = 1.141570986430952e-09
    sum de = -1.6608896216671416e-09
Info: cfl dt = 0.0038695730608090113 cfl multiplier : 0.9999999999999879       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1451e+04 | 11520 |      1 | 2.779e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.867692719866916 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2371575516775622, dt = 0.0038695730608090113 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.7%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 305.95 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.3298418226262334e-27,6.303088816790967e-27,1.2071388429919671e-25)
    sum a = (2.4461684437511656e-25,-2.343180763415532e-25,4.7717488381800115e-25)
    sum e = 1.135284579680703e-09
    sum de = -1.5874140302092572e-09
Info: cfl dt = 0.0038875689322705937 cfl multiplier : 0.999999999999992        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9296e+04 | 11520 |      1 | 2.932e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.51829723289904 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2410271247383712, dt = 0.0038875689322705937 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.7%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 331.40 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.0423990093541616e-27,5.2009788118604685e-27,9.231061740526808e-26)
    sum a = (9.047709354706943e-26,3.523835207445533e-26,6.816784054542873e-26)
    sum e = 1.1292565145310618e-09
    sum de = -1.5130805552476217e-09
Info: cfl dt = 0.0039057336355180386 cfl multiplier : 0.9999999999999947       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7599e+04 | 11520 |      1 | 3.064e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.67816472198732 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2449146936706418, dt = 0.0039057336355180386 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (2.0%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 303.59 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.9886340352036228e-27,5.862570026890834e-27,9.37307807499645e-26)
    sum a = (1.8227812077065182e-25,-3.357787511733873e-25,-5.2262011084828695e-25)
    sum e = 1.1234921654375817e-09
    sum de = -1.4380343678373035e-09
Info: cfl dt = 0.003923787375089228 cfl multiplier : 0.9999999999999964        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6680e+04 | 11520 |      1 | 3.141e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.769990358285845 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.24882042730615986, dt = 0.003923787375089228 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (1.5%)
   patch tree reduce : 2.16 us    (0.5%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.3%)
   LB compute        : 386.27 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0941382668018523e-27,3.820498611218417e-27,1.107727408863217e-25)
    sum a = (1.9522571749205915e-26,-8.262549616582875e-26,-1.8178090812114328e-25)
    sum e = 1.1179969182386945e-09
    sum de = -1.3624250159529932e-09
Info: cfl dt = 0.003942060174436658 cfl multiplier : 0.9999999999999977        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7531e+04 | 11520 |      1 | 3.069e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.0196286851644 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.2527442146812491, dt = 0.003942060174436658 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.7%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.65 us    (0.5%)
   LB compute        : 328.27 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.3364881964904845e-27,3.991443706855872e-27,6.532751385603587e-26)
    sum a = (8.155797768578213e-26,-3.262632997484888e-26,-1.24974374333286e-24)
    sum e = 1.1127751228196638e-09
    sum de = -1.2863948318886932e-09
Info: cfl dt = 0.003960620082165087 cfl multiplier : 0.9999999999999986        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1135e+04 | 11520 |      1 | 2.801e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.674065722322894 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.25668627485568574, dt = 0.003960620082165087 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.6%)
   patch tree reduce : 1.92 us    (0.5%)
   gen split merge   : 1.25 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 338.13 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.891194382022579e-27,3.960773068090006e-27,5.822669713255371e-26)
    sum a = (1.6336732959132617e-25,-1.4269898178748538e-25,-1.022517608181431e-24)
    sum e = 1.1078305751120801e-09
    sum de = -1.2100834933453482e-09
Info: cfl dt = 0.0039789605679357975 cfl multiplier : 0.9999999999999991       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1280e+04 | 11520 |      1 | 2.791e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.09207438667796 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2606468949378508, dt = 0.0039789605679357975 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.04 us    (2.2%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 295.09 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0791543328309506e-27,3.1750014748183967e-27,8.378963733708948e-26)
    sum a = (-2.7479975876240376e-26,-6.575319529636731e-26,-1.1815759027874313e-24)
    sum e = 1.103167208306768e-09
    sum de = -1.1336387727050478e-09
Info: cfl dt = 0.00399719274696125 cfl multiplier : 0.9999999999999994         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0280e+04 | 11520 |      1 | 2.860e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.08518627113716 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2646258555057866, dt = 0.00399719274696125 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.9%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 941.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.5%)
   LB compute        : 277.17 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5686840545319817e-27,3.06525540531786e-27,8.307955566474127e-26)
    sum a = (-2.589404988500396e-25,5.8871672382995395e-25,-6.362331784240015e-25)
    sum e = 1.0987881792838343e-09
    sum de = -1.0572042200309692e-09
Info: cfl dt = 0.004015895530328991 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1830e+04 | 11520 |      1 | 2.754e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.25092997740782 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.26862304825274785, dt = 0.004015895530328991 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.7%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 325.46 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.0711582060848923e-27,6.737501465684609e-27,6.887792221777694e-26)
    sum a = (1.7414680438563296e-25,-1.5491763311082452e-25,6.816784054542873e-26)
    sum e = 1.0946954592272243e-09
    sum de = -9.809098620858996e-10
Info: cfl dt = 0.004035186920184077 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0988e+04 | 11520 |      1 | 2.811e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.4386901979761 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.27263894378307685, dt = 0.004035186920184077 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.81 us    (1.9%)
   patch tree reduce : 2.15 us    (0.6%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 344.34 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.498826610921876e-27,4.619200916056644e-27,7.313841225186624e-26)
    sum a = (-2.128636695811379e-25,4.2070124314020685e-25,-1.5905829460600038e-25)
    sum e = 1.0908905224495674e-09
    sum de = -9.048809841904296e-10
Info: cfl dt = 0.004055143077654904 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2109e+04 | 11520 |      1 | 2.736e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.09978583004779 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2766741307032609, dt = 0.004055143077654904 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.6%)
   patch tree reduce : 1.86 us    (0.5%)
   gen split merge   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 327.10 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.1428490545757507e-27,7.486569536608506e-27,8.094931064769662e-26)
    sum a = (-4.678740998254647e-25,-2.244401548822447e-25,-7.952914730300018e-25)
    sum e = 1.0873744034432085e-09
    sum de = -8.292388854333291e-10
Info: cfl dt = 0.004076615854808887 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6617e+04 | 11520 |      1 | 3.146e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.402669478777476 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.28072927378091583, dt = 0.004076615854808887 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.9%)
   patch tree reduce : 2.23 us    (0.7%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 283.53 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.567243923454155e-27,5.2635429023565846e-27,4.47351453579376e-26)
    sum a = (2.4339196229107232e-25,2.368731051168874e-26,1.1361306757571455e-24)
    sum e = 1.0841470968352028e-09
    sum de = -7.540865841173415e-10
Info: cfl dt = 0.004097150184016441 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2642e+04 | 11520 |      1 | 2.702e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.3238092715996 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.28480588963572473, dt = 0.004097150184016441 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (2.0%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.54 us    (0.5%)
   LB compute        : 298.86 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.120251239614471e-27,5.866353538732753e-27,8.094931064769662e-26)
    sum a = (-3.373229753617364e-26,-2.49689945534469e-25,9.770723811511451e-25)
    sum e = 1.0812103378647556e-09
    sum de = -6.795700774646486e-10
Info: cfl dt = 0.004114091638301885 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2557e+04 | 11520 |      1 | 2.707e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.48813936540566 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2889030398197412, dt = 0.004114091638301885 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.9%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 303.01 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.826738867341324e-27,4.27907237709908e-27,7.313841225186624e-26)
    sum a = (-1.2259826743270702e-25,-2.1947742686910674e-26,-2.7903369396595496e-23)
    sum e = 1.0785666373630372e-09
    sum de = -6.058784920418638e-10
Info: cfl dt = 0.004131015905466307 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7459e+04 | 11520 |      1 | 3.075e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.159119598582485 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2930171314580431, dt = 0.004131015905466307 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.8%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 317.33 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.515995554861938e-27,4.6568819400462816e-27,-9.79912707840538e-26)
    sum a = (-4.288659495519248e-25,-5.853889008365786e-26,-2.1833023196025065e-22)
    sum e = 1.076214672577202e-09
    sum de = -5.331291254112724e-10
Info: cfl dt = 0.00414806951289668 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3163e+04 | 11520 |      1 | 2.669e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.72061967987079 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2971481473635094, dt = 0.002851852636490626 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (2.1%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 271.86 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.371656615995285e-27,4.414358135696647e-27,-1.1208639198016589e-24)
    sum a = (4.426692753530515e-25,-1.5693588531572302e-25,-5.242675003281348e-22)
    sum e = 1.074820846161605e-09
    sum de = -4.838944696733594e-10
Info: cfl dt = 0.0041599063184222336 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2595e+04 | 11520 |      1 | 2.705e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.96089475783563 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 96                                                      [SPH][rank=0]
Info: time since start : 46.847765993 (s)                                             [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[0. 0. 0. ... 0. 0. 0.]
(11520, 3)
[[0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 ...
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]]
compute original rho
Info: Dumping state to _to_trash/dusty_settle/dump/0000003.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.64 us   (71.7%)
Info: dump to _to_trash/dusty_settle/dump/0000003.sham                      [Shamrock Dump][rank=0]
              - took 1.23 ms, bandwidth = 2.41 GB/s
Info: evolve_until (target_time = 0.40s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.30000000000000004, dt = 0.0041599063184222336 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.13 us    (1.0%)
   patch tree reduce : 1.29 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        : 303.10 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.287448536277135e-27,3.621213236484426e-27,-3.725798534811089e-24)
    sum a = (2.9922172178940737e-26,-2.6316513783391064e-25,-1.388056291799535e-21)
    sum e = 1.0729006624500241e-09
    sum de = -4.1276691235750326e-10
Info: cfl dt = 0.004176386328697124 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2374e+04 | 11520 |      1 | 3.558e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.08531587167072 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.30415990631842227, dt = 0.004176386328697124 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.6%)
   patch tree reduce : 1.95 us    (0.5%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 339.94 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.0209769870520536e-27,2.3011821121747928e-27,-1.1328287959807263e-23)
    sum a = (-3.49894353045072e-27,3.3550490865163456e-25,-2.94588459047746e-21)
    sum e = 1.0713236291930653e-09
    sum de = -3.431017029261204e-10
Info: cfl dt = 0.004193332212721042 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2408e+04 | 11520 |      1 | 2.716e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.348135228920626 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.30833629264711937, dt = 0.004193332212721042 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.6%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.3%)
   LB compute        : 364.77 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.105438626840187e-27,4.9582031779000144e-27,-2.693180014840505e-23)
    sum a = (-1.8045636827222328e-25,-1.4458269514057525e-25,-5.346301482217157e-21)
    sum e = 1.0700292973632448e-09
    sum de = -2.747686856371069e-10
Info: cfl dt = 0.004203722283353215 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0635e+04 | 11520 |      1 | 2.835e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.248543561629795 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.3125296248598404, dt = 0.004203722283353215 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (1.6%)
   patch tree reduce : 1.92 us    (0.5%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.3%)
   LB compute        : 359.50 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.2350475993934725e-27,3.34383559927813e-27,-5.444338198228242e-23)
    sum a = (-4.7032746221400733e-26,-2.0015393754013322e-25,-8.694433138446434e-21)
    sum e = 1.0690162190463375e-09
    sum de = -2.079696540362612e-10
Info: cfl dt = 0.004187401289132073 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7448e+04 | 11520 |      1 | 3.076e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.19340925892338 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.3167333471431936, dt = 0.004187401289132073 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.8%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 941.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 324.48 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.151554325938759e-27,2.3889045644150026e-27,-9.788893026302662e-23)
    sum a = (-5.756666768013672e-26,-1.6628258768161282e-25,-1.300310647449459e-20)
    sum e = 1.068283884206669e-09
    sum de = -1.4319847599769483e-10
Info: cfl dt = 0.004172581265179593 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2844e+04 | 11520 |      1 | 2.689e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56.06388308141558 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.3209207484323257, dt = 0.004172581265179593 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (2.0%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 277.89 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.413805713643281e-27,1.765991331557168e-27,-1.6116497378754396e-22)
    sum a = (4.4901855506882003e-26,1.87175991888161e-25,-1.8491356123340846e-20)
    sum e = 1.0678201021030868e-09
    sum de = -8.046510327860826e-11
Info: cfl dt = 0.004158570575119588 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3345e+04 | 11520 |      1 | 2.658e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56.51924341786304 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.3250933296975053, dt = 0.004158570575119588 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (2.3%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.5%)
   LB compute        : 271.70 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.0132997083077225e-27,3.281790467200215e-27,-2.495147334344014e-22)
    sum a = (-1.7742917158721224e-25,-4.571003220313583e-25,-2.4555612663489217e-20)
    sum e = 1.0676144647081592e-09
    sum de = -1.979125690073915e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010113330678856561
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.475598403234032e-27,1.9421512234616745e-27,-2.6212146519638445e-22)
    sum a = (8.780769759657672e-26,-8.176490070940196e-26,-2.4493057308482028e-20)
    sum e = 1.0677048194970654e-09
    sum de = -2.038691751652448e-11
Info: cfl dt = 0.0020714352104008794 cfl multiplier : 0.49999999999999983      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8340e+04 | 11520 |      1 | 4.065e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.82871659291655 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.3292519002726249, dt = 0.0020714352104008794 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (2.3%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.5%)
   LB compute        : 272.78 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (72.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.7421978719598495e-27,2.5532206654353787e-27,-3.127272468392959e-22)
    sum a = (-1.534169007848562e-25,-2.5716207047191493e-25,-2.786616111696445e-20)
    sum e = 1.0676703206399219e-09
    sum de = 9.290646564962105e-12
Info: cfl dt = 0.00275603506175316 cfl multiplier : 0.6666666666666665         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3240e+04 | 11520 |      1 | 2.664e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.990535504823697 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.3313233354830258, dt = 0.00275603506175316 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (2.0%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 315.92 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.414879625865268e-27,1.662801756274015e-27,-3.9301999822069754e-22)
    sum a = (-1.557582509534734e-25,-1.9560470933792433e-25,-3.276108924301005e-20)
    sum e = 1.0677328983002153e-09
    sum de = 4.7948230921288194e-11
Info: cfl dt = 0.003205242019991987 cfl multiplier : 0.7777777777777777        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3860e+04 | 11520 |      1 | 2.627e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.77457446097522 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.33407937054477893, dt = 0.003205242019991987 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (1.9%)
   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.16 us    (0.3%)
   LB compute        : 328.86 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.9173383038993355e-27,1.1206841074453431e-27,-5.047722967740236e-22)
    sum a = (4.2610012761533324e-26,-2.4349876520075274e-25,-3.918244301585565e-20)
    sum e = 1.0679444140878254e-09
    sum de = 9.179684310892073e-11
Info: cfl dt = 0.0034979742617462636 cfl multiplier : 0.8518518518518517       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3586e+04 | 11520 |      1 | 2.643e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.65725903583452 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.33728461256477094, dt = 0.0034979742617462636 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.9%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 291.69 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.450375612869754e-27,1.9217228246651063e-28,-6.521212558427928e-22)
    sum a = (6.59161867964035e-26,5.613960028207083e-25,-4.731059454158445e-20)
    sum e = 1.0683385622638155e-09
    sum de = 1.3828653290180395e-10
Info: cfl dt = 0.0036869632901109037 cfl multiplier : 0.9012345679012345       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4245e+04 | 11520 |      1 | 2.604e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.36465831242244 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.3407825868265172, dt = 0.0036869632901109037 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (2.1%)
   patch tree reduce : 1.69 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.5%)
   LB compute        : 263.58 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.1665947261606434e-27,3.669770254737392e-27,-8.407693638172157e-22)
    sum a = (-3.6948300462741796e-25,-1.8400624097932147e-27,-5.741260269683993e-20)
    sum e = 1.0689310531952737e-09
    sum de = 1.8574194896637752e-10
Info: cfl dt = 0.003807585268871734 cfl multiplier : 0.934156378600823         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3799e+04 | 11520 |      1 | 2.630e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.4635841209932 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.3444695501166281, dt = 0.003807585268871734 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (1.7%)
   patch tree reduce : 1.94 us    (0.5%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 339.81 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.376085924171316e-27,2.6244506731983042e-27,-1.0779906085886182e-21)
    sum a = (-4.863312789581164e-27,-3.689889526079863e-25,-6.977097773545585e-20)
    sum e = 1.0697260412195772e-09
    sum de = 2.330766250821996e-10
Info: cfl dt = 0.0038786031764251987 cfl multiplier : 0.9561042524005486       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3188e+04 | 11520 |      1 | 2.667e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.38821618351419 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.34827713538549987, dt = 0.0038786031764251987 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (2.2%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.5%)
   LB compute        : 261.27 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.700792282505549e-27,4.94291912803642e-28,-1.3721408762363582e-21)
    sum a = (5.3915572768885865e-25,-1.0601644187202831e-25,-8.467667136218688e-20)
    sum e = 1.0707196755659126e-09
    sum de = 2.795363742251691e-10
Info: cfl dt = 0.003923658312837122 cfl multiplier : 0.9707361682670325        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4205e+04 | 11520 |      1 | 2.606e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.579050831188844 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.35215573856192506, dt = 0.003923658312837122 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.0%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 303.39 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (62.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.5303071763611555e-27,5.883402724241106e-28,-1.733282734139282e-21)
    sum a = (3.3747385119375607e-25,2.251879929367495e-25,-1.024156931133481e-19)
    sum e = 1.071905676401858e-09
    sum de = 3.247262812710013e-10
Info: cfl dt = 0.003950337800616882 cfl multiplier : 0.9804907788446883        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3934e+04 | 11520 |      1 | 2.622e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.869754379313825 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.3560793968747622, dt = 0.003950337800616882 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.6%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 349.62 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.5928220356855333e-27,2.127678818221326e-27,-2.1726713318449453e-21)
    sum a = (1.2009745483227668e-26,4.136158564512334e-27,-1.2322808467811349e-19)
    sum e = 1.0732759301999996e-09
    sum de = 3.6837831439160175e-10
Info: cfl dt = 0.003965640931008481 cfl multiplier : 0.9869938525631256        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9819e+04 | 11520 |      1 | 2.893e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.15568922977183 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.3600297346753791, dt = 0.003965640931008481 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.9%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.66 us    (0.5%)
   LB compute        : 308.73 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.1880327053024168e-27,1.707480098030383e-27,-2.702452616358864e-21)
    sum a = (-6.01046224025157e-27,-1.6273932956444906e-26,-1.4730659062562525e-19)
    sum e = 1.0748216708139815e-09
    sum de = 4.103359599202295e-10
Info: cfl dt = 0.003974137095383136 cfl multiplier : 0.9913292350420836        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3993e+04 | 11520 |      1 | 2.619e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.51940728487763 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.36399537560638756, dt = 0.003974137095383136 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.7%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 316.41 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.247657805063744e-27,1.6023184282398297e-27,-3.3356051054473827e-21)
    sum a = (5.130134157026407e-25,2.0148589122853538e-26,-1.7481155307815298e-19)
    sum e = 1.0765341802118008e-09
    sum de = 4.5051142895236256e-10
Info: cfl dt = 0.003978752869195725 cfl multiplier : 0.9942194900280557        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3840e+04 | 11520 |      1 | 2.628e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.4454456566392 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.3679695127017707, dt = 0.003978752869195725 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (1.9%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 307.55 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7517485514026558e-28,1.7548520131871738e-27,-4.0857900604048085e-21)
    sum a = (1.5281967328408862e-25,-6.860219348245717e-26,-2.0586044794756998e-19)
    sum e = 1.0784050331187515e-09
    sum de = 4.888597295946509e-10
Info: cfl dt = 0.003981300047473142 cfl multiplier : 0.9961463266853704        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3839e+04 | 11520 |      1 | 2.628e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.50809984643942 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.37194826557096644, dt = 0.003981300047473142 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.7%)
   patch tree reduce : 20.79 us   (5.8%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 318.81 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.8330882412539306e-28,1.3051834842105541e-27,-4.9671540833484995e-21)
    sum a = (-8.186020660463793e-26,9.80526401473378e-26,-2.4035269358515147e-19)
    sum e = 1.0804261540814243e-09
    sum de = 5.253603979999374e-10
Info: cfl dt = 0.003979383261352523 cfl multiplier : 0.9974308844569135        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3658e+04 | 11520 |      1 | 2.639e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.316925023706 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 0.3759295656184396, dt = 0.003979383261352523 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.8%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 308.60 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.38 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0762355647474134e-27,2.0270735988286407e-27,-5.9922798215124656e-21)
    sum a = (1.8804218810848011e-25,-3.9086177813542365e-25,-2.782939479216627e-19)
    sum e = 1.082587941520837e-09
    sum de = 5.599824815732139e-10
Info: cfl dt = 0.003976148772561595 cfl multiplier : 0.998287256304609         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1154e+04 | 11520 |      1 | 2.799e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.17693576179147 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.3799089488797921, dt = 0.003976148772561595 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.9%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 290.29 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.66 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.08474704665467e-28,-4.998104761394266e-28,-7.17431940763194e-21)
    sum a = (-6.046674390233848e-26,-4.635198971076901e-25,-3.196278929595064e-19)
    sum e = 1.084881940404143e-09
    sum de = 5.927328281676308e-10
Info: cfl dt = 0.003968122794715717 cfl multiplier : 0.9988581708697394        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2811e+04 | 11520 |      1 | 2.691e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.194531313651446 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.3838850976523537, dt = 0.003968122794715717 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (2.2%)
   patch tree reduce : 1.93 us    (0.7%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.5%)
   LB compute        : 267.36 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.255016680470763e-28,-2.4835468378926467e-27,-8.524805988229204e-21)
    sum a = (5.028411302008969e-26,6.860713423628088e-27,-3.641931186135778e-19)
    sum e = 1.0872976260409986e-09
    sum de = 6.235953180950687e-10
Info: cfl dt = 0.003958593792002195 cfl multiplier : 0.9992387805798263        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2599e+04 | 11520 |      1 | 2.704e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.82435800319922 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.3878532204470694, dt = 0.003958593792002195 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.5%)
   patch tree reduce : 2.27 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.3%)
   LB compute        : 368.71 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0674188484642383e-28,-1.5231200947432891e-27,-1.0054927610133774e-20)
    sum a = (-1.5096237105647138e-25,-5.5554221719335e-25,-4.1179710754086973e-19)
    sum e = 1.089825996211364e-09
    sum de = 6.525907156977687e-10
Info: cfl dt = 0.00394964483421689 cfl multiplier : 0.9994925203865508         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2706e+04 | 11520 |      1 | 3.522e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.459426940253714 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.3918118142390716, dt = 0.00394964483421689 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (1.8%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 342.09 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1013150031619852e-27,-4.830471268447864e-27,-1.1775581186689507e-20)
    sum a = (1.7286836247744908e-25,-8.248783538443302e-26,-4.622192799706841e-19)
    sum e = 1.0924595211713646e-09
    sum de = 6.79758162854935e-10
Info: cfl dt = 0.003941548053644079 cfl multiplier : 0.9996616802577005        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8453e+04 | 11520 |      1 | 2.996e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.460996881314486 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.39576145907328847, dt = 0.003941548053644079 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.7%)
   patch tree reduce : 2.36 us    (0.7%)
   gen split merge   : 1.20 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 335.01 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.196134939833883e-28,-4.221429907917187e-27,-1.3697018167000093e-20)
    sum a = (5.0266676818136165e-26,-4.435912798798563e-26,-5.152031544029686e-19)
    sum e = 1.0951911634998934e-09
    sum de = 7.051388704582537e-10
Info: cfl dt = 0.003934106910833899 cfl multiplier : 0.9997744535051337        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2350e+04 | 11520 |      1 | 2.720e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.164162468098525 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.3997030071269326, dt = 0.0002969928730674476 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.5%)
   patch tree reduce : 2.12 us    (0.5%)
   gen split merge   : 1.00 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.59 us    (0.4%)
   LB compute        : 388.35 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.094884568397769e-30,-4.159455139764985e-27,-1.3954445495839836e-20)
    sum a = (1.9298051354085272e-25,-8.831792489641314e-26,-5.187724850211145e-19)
    sum e = 1.0954391726257675e-09
    sum de = 7.06352545988284e-10
Info: cfl dt = 0.00393459072334284 cfl multiplier : 0.9998496356700892         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4370e+04 | 11520 |      1 | 2.596e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.117980377039928 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 123                                                     [SPH][rank=0]
Info: time since start : 57.370236127000005 (s)                                       [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[0. 0. 0. ... 0. 0. 0.]
(11520, 3)
[[0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 ...
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]]
compute original rho
Info: Dumping state to _to_trash/dusty_settle/dump/0000004.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.62 us   (72.7%)
Info: dump to _to_trash/dusty_settle/dump/0000004.sham                      [Shamrock Dump][rank=0]
              - took 1.21 ms, bandwidth = 2.43 GB/s
Info: evolve_until (target_time = 0.50s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.4, dt = 0.00393459072334284 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.49 us    (1.0%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 321.23 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.734267276937137e-28,-4.513500511558493e-27,-1.599614261826099e-20)
    sum a = (-2.9838046635353553e-26,1.57233856246676e-26,-5.747259550910794e-19)
    sum e = 1.0982291420671408e-09
    sum de = 7.305051180855718e-10
Info: cfl dt = 0.003927072953237172 cfl multiplier : 0.9998997571133929        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1871e+04 | 11520 |      1 | 3.615e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.18681616176579 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.40393459072334287, dt = 0.003927072953237172 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.6%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 353.41 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1793728771938845e-28,-4.24707902960399e-27,-1.8363220465402266e-20)
    sum a = (-5.661195260009738e-25,-2.6902816299596885e-25,-6.320583526428643e-19)
    sum e = 1.101143962282095e-09
    sum de = 7.523003400998002e-10
Info: cfl dt = 0.003920099751803909 cfl multiplier : 0.9999331714089287        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6047e+04 | 11520 |      1 | 3.196e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.237636077335 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 0.40786166367658006, dt = 0.003920099751803909 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.5%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.3%)
   LB compute        : 343.14 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.0544778265327056e-27,-5.8607958635950145e-27,-2.0953528818124667e-20)
    sum a = (1.172515210373931e-25,-4.5260945580650527e-26,-6.909704490088354e-19)
    sum e = 1.1041347240545266e-09
    sum de = 7.724356661645008e-10
Info: cfl dt = 0.0039142774959072925 cfl multiplier : 0.9999554476059526       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7317e+04 | 11520 |      1 | 3.087e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.71471566965363 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.41178176342838396, dt = 0.0039142774959072925 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.1%)
   patch tree reduce : 2.42 us    (0.8%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 285.21 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2560908377672979e-27,-5.5994993302339676e-27,-2.3773638062142432e-20)
    sum a = (2.430518247182096e-25,-2.3042202275634595e-26,-7.511051128723752e-19)
    sum e = 1.1071966529150412e-09
    sum de = 7.909491329137046e-10
Info: cfl dt = 0.003908904004083365 cfl multiplier : 0.9999702984039684        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8348e+04 | 11520 |      1 | 3.004e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.907225442096404 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.41569604092429124, dt = 0.003908904004083365 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.9%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 306.48 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.971973659614989e-29,-5.645989548367941e-27,-2.682733932350423e-20)
    sum a = (7.526618689199903e-26,-3.0540667336028505e-25,-8.120946298596216e-19)
    sum e = 1.110323626321624e-09
    sum de = 8.078812427917445e-10
Info: cfl dt = 0.003902001853592802 cfl multiplier : 0.999980198935979         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2417e+04 | 11520 |      1 | 2.716e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.81428922808552 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.41960494492837463, dt = 0.003902001853592802 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.7%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 291.37 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.406732084676583e-29,-7.389577238761307e-27,-3.011533345282066e-20)
    sum a = (1.0243157825335872e-25,6.239404528907687e-25,-8.735291124260283e-19)
    sum e = 1.1135081241506851e-09
    sum de = 8.232647890968377e-10
Info: cfl dt = 0.003896095264070988 cfl multiplier : 0.9999867992906527        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9904e+04 | 11520 |      1 | 2.887e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.65791505704211 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.42350694678196743, dt = 0.003896095264070988 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.8%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 320.17 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.5802519775594714e-28,-3.14553200536486e-27,-3.36385613083076e-20)
    sum a = (8.040630446649234e-26,-8.897274813783825e-26,-9.350444590932821e-19)
    sum e = 1.1167447713117595e-09
    sum de = 8.371454675818131e-10
Info: cfl dt = 0.0038620174261703275 cfl multiplier : 0.9999911995271017       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9197e+04 | 11520 |      1 | 2.939e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.723387312479204 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.4274030420460384, dt = 0.0038620174261703275 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (2.0%)
   patch tree reduce : 2.38 us    (0.8%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (0.5%)
   LB compute        : 266.33 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.35 us    (61.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.256960890861006e-28,-4.877826931124972e-27,-3.736953775867345e-20)
    sum a = (-2.7792030636016735e-25,4.645084379319449e-26,-9.95807005574779e-19)
    sum e = 1.1200039922256184e-09
    sum de = 8.494706737024093e-10
Info: cfl dt = 0.0038590466507873976 cfl multiplier : 0.9999941330180677       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7608e+04 | 11520 |      1 | 3.063e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.38842955003382 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.4312650594722087, dt = 0.0038590466507873976 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.7%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 327.66 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1386825859420792e-27,-4.437146362006523e-27,-4.132970727042314e-20)
    sum a = (-7.600556636772294e-26,-2.6321987347673727e-25,-1.0559641591450456e-18)
    sum e = 1.1233052032632185e-09
    sum de = 8.604121630554249e-10
Info: cfl dt = 0.0038560906339084444 cfl multiplier : 0.9999960886787118       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2387e+04 | 11520 |      1 | 2.718e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.11710535752782 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.4351241061229961, dt = 0.0038560906339084444 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.7%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.4%)
   LB compute        : 307.79 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.042253915234666e-27,-6.0495900850890256e-27,-4.551770577666408e-20)
    sum a = (-8.218800963923619e-26,-7.35639671798928e-26,-1.1151481116994386e-18)
    sum e = 1.1266434621058933e-09
    sum de = 8.69997870751825e-10
Info: cfl dt = 0.0038519955657317488 cfl multiplier : 0.9999973924524745       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4662e+04 | 11520 |      1 | 3.324e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.76849129037452 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.4389801967569046, dt = 0.0038519955657317488 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (1.7%)
   patch tree reduce : 2.18 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 343.83 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.37076122395254e-27,-5.967322741678962e-27,-4.9927360537418544e-20)
    sum a = (8.818248756571927e-26,6.49922360351566e-26,-1.1729978349931227e-18)
    sum e = 1.1300125483164096e-09
    sum de = 8.782630763700751e-10
Info: cfl dt = 0.0038271538533054803 cfl multiplier : 0.9999982616349831       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5108e+04 | 11520 |      1 | 3.281e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.26085998302059 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.4428321923226363, dt = 0.0038271538533054803 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (2.0%)
   patch tree reduce : 2.30 us    (0.8%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 277.40 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.050921610854542e-28,-5.451796794872474e-27,-5.45280166168096e-20)
    sum a = (-6.955220509487616e-26,3.138157496883511e-25,-1.228880330979773e-18)
    sum e = 1.133389124313595e-09
    sum de = 8.85206993445079e-10
Info: cfl dt = 0.003821118702907046 cfl multiplier : 0.9999988410899888        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9278e+04 | 11520 |      1 | 2.933e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.975382928405594 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.4466593461759418, dt = 0.003821118702907046 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (2.4%)
   patch tree reduce : 1.98 us    (0.7%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.5%)
   LB compute        : 260.58 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (63.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2726612565843647e-27,-3.77652369408109e-27,-5.933063838593997e-20)
    sum a = (1.6985553196869805e-25,-3.203530604362552e-26,-1.2827872462585965e-18)
    sum e = 1.1367843943515952e-09
    sum de = 8.909245985110105e-10
Info: cfl dt = 0.0038150118022836793 cfl multiplier : 0.9999992273933259       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6501e+04 | 11520 |      1 | 3.156e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.58581460615211 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.4504804648788488, dt = 0.0038150118022836793 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (2.0%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 1.55 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.5%)
   LB compute        : 271.05 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (63.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.672854190065191e-28,-4.5596494276191174e-27,-6.432747743360098e-20)
    sum a = (-1.6833310802183453e-25,-1.7744703814128404e-25,-1.334424374110452e-18)
    sum e = 1.140193763222163e-09
    sum de = 8.954501525991796e-10
Info: cfl dt = 0.003811575980894914 cfl multiplier : 0.9999994849288839        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2162e+04 | 11520 |      1 | 2.732e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.26558397635218 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.45429547668113246, dt = 0.003811575980894914 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (2.0%)
   patch tree reduce : 2.38 us    (0.8%)
   gen split merge   : 1.07 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 281.29 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4541838477934223e-27,-5.513204080609069e-27,-6.951223249503224e-20)
    sum a = (-7.009648980448218e-26,-1.694631646041847e-25,-1.3835607391689583e-18)
    sum e = 1.1436150864490713e-09
    sum de = 8.988259903293794e-10
Info: cfl dt = 0.0038081065411472784 cfl multiplier : 0.999999656619256        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9511e+04 | 11520 |      1 | 2.916e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.06220012514991 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.4581070526620274, dt = 0.0038081065411472784 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (2.1%)
   patch tree reduce : 1.77 us    (0.6%)
   gen split merge   : 1.33 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 268.16 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5338372507210942e-27,-6.143236873023987e-27,-7.487463010859817e-20)
    sum a = (-6.014739351154882e-27,1.6267579320387395e-25,-1.4299408128636674e-18)
    sum e = 1.147044011636635e-09
    sum de = 9.010881800837816e-10
Info: cfl dt = 0.0038053802004753704 cfl multiplier : 0.9999997710795041       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1042e+04 | 11520 |      1 | 2.807e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.841722769785754 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.46191515920317466, dt = 0.0038053802004753704 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (1.9%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.55 us    (0.4%)
   LB compute        : 309.31 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 19.51 us   (5.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (72.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4348312076105767e-27,-4.8916794613083394e-27,-8.040438829168322e-20)
    sum a = (4.316747450763588e-25,-8.09955110299429e-26,-1.4733397038079665e-18)
    sum e = 1.1504770189991436e-09
    sum de = 9.022735889324579e-10
Info: cfl dt = 0.003802394953806493 cfl multiplier : 0.9999998473863361        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1246e+04 | 11520 |      1 | 2.793e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.04855233709464 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.46572053940365005, dt = 0.003802394953806493 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.87 us    (2.1%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 300.60 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0394435906227684e-27,-5.6633471966696664e-27,-8.608921411037566e-20)
    sum a = (-6.897444027712262e-26,3.8335547287883056e-25,-1.5135373307084915e-18)
    sum e = 1.1539098396567127e-09
    sum de = 9.024175133757754e-10
Info: cfl dt = 0.0037979434405729902 cfl multiplier : 0.9999998982575574       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1879e+04 | 11520 |      1 | 2.751e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.762591576579936 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.46952293435745657, dt = 0.0037979434405729902 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.7%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 301.04 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.56 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.741967859918267e-28,-3.324721011366062e-27,-9.191396010244099e-20)
    sum a = (3.5632456536935663e-26,9.209816499084846e-26,-1.5503244580593417e-18)
    sum e = 1.1573372541600172e-09
    sum de = 9.015555296618261e-10
Info: cfl dt = 0.0037920298636049247 cfl multiplier : 0.999999932171705        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9983e+04 | 11520 |      1 | 2.881e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.45414542700185 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.47332087779802956, dt = 0.0037920298636049247 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (2.1%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 279.28 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5982417645859446e-28,-3.528811524988637e-27,-9.786270055613174e-20)
    sum a = (-4.496679736835638e-26,4.224847696044713e-25,-1.5835154722865692e-18)
    sum e = 1.1607541970103212e-09
    sum de = 8.997245523304955e-10
Info: cfl dt = 0.003786492241759102 cfl multiplier : 0.9999999547811367        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2006e+04 | 11520 |      1 | 2.742e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.77789647030131 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.4771129076616345, dt = 0.003786492241759102 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.72 us    (2.4%)
   patch tree reduce : 1.89 us    (0.7%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.5%)
   LB compute        : 260.80 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6303133244942503e-28,-1.302159507209487e-27,-1.0392159597965388e-19)
    sum a = (-7.503002752721477e-26,-1.1331705574575005e-26,-1.6129658384403926e-18)
    sum e = 1.1641574224686485e-09
    sum de = 8.969612026758822e-10
Info: cfl dt = 0.0037803339697154185 cfl multiplier : 0.9999999698540911       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8494e+04 | 11520 |      1 | 2.993e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.54924565521902 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.4808993999033936, dt = 0.0037803339697154185 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.9%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 297.34 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.042467259063039e-28,-2.166444706792502e-27,-1.1007487545906455e-19)
    sum a = (2.2520649367612228e-26,-1.6503175265875978e-25,-1.6385389828292208e-18)
    sum e = 1.1675429414853938e-09
    sum de = 8.933014157199834e-10
Info: cfl dt = 0.003774658013339073 cfl multiplier : 0.9999999799027274        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1965e+04 | 11520 |      1 | 2.745e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.57495974557989 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.48467973387310903, dt = 0.003774658013339073 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.7%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 305.48 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.3476436027812014e-28,-3.0799072011504577e-27,-1.1630813995821186e-19)
    sum a = (-4.2172259331724495e-26,-1.9891041494806097e-26,-1.6601272941289129e-18)
    sum e = 1.1709079085361877e-09
    sum de = 8.887800082728088e-10
Info: cfl dt = 0.003769481030764276 cfl multiplier : 0.9999999866018182        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1112e+04 | 11520 |      1 | 2.802e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.49540629280181 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.4884543918864481, dt = 0.003769481030764276 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (2.0%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 290.22 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.159512200248672e-28,-2.8813804530727862e-27,-1.2260673197121522e-19)
    sum a = (4.144835871765092e-25,1.4459488788627096e-25,-1.6776357757937578e-18)
    sum e = 1.1742496299374095e-09
    sum de = 8.834302525227419e-10
Info: cfl dt = 0.0037648319755213223 cfl multiplier : 0.9999999910678788       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2030e+04 | 11520 |      1 | 2.741e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.50933807376713 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.4922238729172124, dt = 0.0037648319755213223 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.8%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 317.02 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.10 us    (73.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9050723285262667e-27,-2.0270498972957695e-27,-1.289557241611585e-19)
    sum a = (3.4650897777952804e-25,2.6200210767902973e-26,-1.690986798855008e-18)
    sum e = 1.1775655657045779e-09
    sum de = 8.772841018376121e-10
Info: cfl dt = 0.0037607513862564362 cfl multiplier : 0.9999999940452525       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1993e+04 | 11520 |      1 | 2.743e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.40546256872249 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.4959887048927337, dt = 0.0037607513862564362 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.8%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 303.20 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0801239008795677e-27,-2.1518851937429127e-27,-1.353402559388028e-19)
    sum a = (-2.5520727097305113e-27,2.2427052420614963e-25,-1.7001144798048575e-18)
    sum e = 1.180853331230238e-09
    sum de = 8.703721260638791e-10
Info: cfl dt = 0.003757288820086778 cfl multiplier : 0.9999999960301684        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0074e+04 | 11520 |      1 | 2.875e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.09665097536013 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.49974945627899015, dt = 0.0002505437210098549 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.9%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.5%)
   LB compute        : 293.28 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4231688758693246e-27,-1.7221317084648445e-27,-1.3578332559989792e-19)
    sum a = (1.0749717279101105e-25,-1.2488578748402576e-26,-1.7004863211733995e-18)
    sum e = 1.1810580909628542e-09
    sum de = 8.694915192948279e-10
Info: cfl dt = 0.0037574029727354256 cfl multiplier : 0.9999999973534456       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9978e+04 | 11520 |      1 | 2.882e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1300716583782453 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 150                                                     [SPH][rank=0]
Info: time since start : 68.034165912 (s)                                             [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[0. 0. 0. ... 0. 0. 0.]
(11520, 3)
[[0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 ...
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]]
compute original rho
Info: Dumping state to _to_trash/dusty_settle/dump/0000005.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.38 us   (69.8%)
Info: dump to _to_trash/dusty_settle/dump/0000005.sham                      [Shamrock Dump][rank=0]
              - took 1.20 ms, bandwidth = 2.46 GB/s
Info: evolve_until (target_time = 0.60s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.5, dt = 0.0037574029727354256 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.62 us    (1.1%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.3%)
   LB compute        : 325.06 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8404431654972607e-27,-1.7995138273567803e-27,-1.4217284215088211e-19)
    sum a = (5.96235652563708e-26,-2.371528030223996e-25,-1.7051370493719977e-18)
    sum e = 1.1843253987309477e-09
    sum de = 8.621951542326607e-10
Info: cfl dt = 0.0037543322903495218 cfl multiplier : 0.9999999982356303       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1905e+04 | 11520 |      1 | 3.611e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.46236658782509 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5037574029727354, dt = 0.0037543322903495218 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.8%)
   patch tree reduce : 2.23 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 325.22 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.973781217565364e-27,-3.111852804341218e-27,-1.4858320954009314e-19)
    sum a = (7.458267260643973e-26,3.8645111518906103e-25,-1.7053813700133293e-18)
    sum e = 1.1875488424520223e-09
    sum de = 8.537869782479891e-10
Info: cfl dt = 0.003752321146397864 cfl multiplier : 0.9999999988237537        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8281e+04 | 11520 |      1 | 3.009e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.91290718162184 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5075117352630849, dt = 0.003752321146397864 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.7%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 316.04 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (64.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2822857869130624e-27,-4.9118887426078235e-28,-1.549827751669044e-19)
    sum a = (-2.8054315320142523e-26,5.252350698194052e-26,-1.7012735560597749e-18)
    sum e = 1.190736929308018e-09
    sum de = 8.447014896579581e-10
Info: cfl dt = 0.003751083521724257 cfl multiplier : 0.9999999992158358        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2322e+04 | 11520 |      1 | 2.722e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.6265083822845 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.5112640564094828, dt = 0.003751083521724257 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.7%)
   patch tree reduce : 2.51 us    (0.7%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 321.72 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9846839226862195e-27,-9.210628987631678e-28,-1.6135673950910083e-19)
    sum a = (2.279713438498661e-25,4.084763889759274e-25,-1.6927872166159001e-18)
    sum e = 1.1938886463532373e-09
    sum de = 8.349591518633135e-10
Info: cfl dt = 0.003750654394126929 cfl multiplier : 0.9999999994772238        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1456e+04 | 11520 |      1 | 2.779e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.59479309154485 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5150151399312071, dt = 0.003750654394126929 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.0%)
   patch tree reduce : 2.31 us    (0.7%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 316.40 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.319028757161795e-27,1.27896315558155e-27,-1.676898670543205e-19)
    sum a = (3.508955003760678e-25,1.3182208577316748e-25,-1.6798953316539088e-18)
    sum e = 1.1970022617105124e-09
    sum de = 8.24583023583116e-10
Info: cfl dt = 0.0037510459034564127 cfl multiplier : 0.9999999996514827       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1578e+04 | 11520 |      1 | 2.771e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.7330603304439 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.518765794325334, dt = 0.0037510459034564127 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.8%)
   patch tree reduce : 1.57 us    (0.5%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.5%)
   LB compute        : 300.72 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (63.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.8661754343701744e-27,1.2561947859186054e-27,-1.7396707140735273e-19)
    sum a = (4.45449263357247e-25,1.6221205578357818e-25,-1.6625773542505298e-18)
    sum e = 1.2000761213457372e-09
    sum de = 8.1359475088709e-10
Info: cfl dt = 0.0037522443737435245 cfl multiplier : 0.9999999997676552       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1633e+04 | 11520 |      1 | 2.767e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.80179677159402 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5225168402287904, dt = 0.0037522443737435245 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.8%)
   patch tree reduce : 2.32 us    (0.7%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 302.21 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.711790774721838e-27,1.9199866873822746e-27,-1.8017295799754098e-19)
    sum a = (-2.818986100070094e-25,-2.4289751284111027e-25,-1.6408014216209616e-18)
    sum e = 1.2031086114467172e-09
    sum de = 8.020147452238537e-10
Info: cfl dt = 0.0037542057428543176 cfl multiplier : 0.9999999998451035       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1625e+04 | 11520 |      1 | 2.768e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.80828294607646 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.526269084602534, dt = 0.0037542057428543176 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (1.9%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 318.95 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.289865213548283e-27,2.475686055219175e-28,-1.8629203000246796e-19)
    sum a = (-4.4678573726656105e-25,2.1383911932613575e-25,-1.6145236990034067e-18)
    sum e = 1.2060981276839199e-09
    sum de = 7.898623755946007e-10
Info: cfl dt = 0.0037568513192976494 cfl multiplier : 0.9999999998967356       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9463e+04 | 11520 |      1 | 2.919e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.29748297601392 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5300232903453883, dt = 0.0037568513192976494 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.82 us    (2.3%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 272.64 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.60 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.299697610147065e-27,1.9073422581886957e-27,-1.9230823105535848e-19)
    sum a = (-1.2058746167723385e-25,5.323175104058588e-25,-1.5836719199659068e-18)
    sum e = 1.2090430440338508e-09
    sum de = 7.771561884843136e-10
Info: cfl dt = 0.0037600655512084824 cfl multiplier : 0.999999999931157        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2313e+04 | 11520 |      1 | 2.723e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.676578356838824 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5337801416646859, dt = 0.0037600655512084824 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.8%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 297.70 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.455981454781322e-27,4.504878571086521e-27,-1.9820499637096004e-19)
    sum a = (3.007562104936891e-25,1.8453802211455784e-25,-1.5481353117675758e-18)
    sum e = 1.2119416834174044e-09
    sum de = 7.639141622857632e-10
Info: cfl dt = 0.00376369425633255 cfl multiplier : 0.9999999999541046         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5078e+04 | 11520 |      1 | 3.284e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.21705917527563 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5375402072158944, dt = 0.00376369425633255 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (2.0%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 991.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.5%)
   LB compute        : 262.34 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.3839426921948506e-27,4.545271400592658e-27,-2.0396489202405315e-19)
    sum a = (-2.342556143240882e-25,-2.148042132397008e-25,-1.5077349281463284e-18)
    sum e = 1.2147922910739676e-09
    sum de = 7.501539900892249e-10
Info: cfl dt = 0.0037675444491946635 cfl multiplier : 0.9999999999694031       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7760e+04 | 11520 |      1 | 3.051e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.411693508058455 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5413039014722268, dt = 0.0037675444491946635 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 24.75 us   (7.2%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.74 us    (0.5%)
   LB compute        : 301.78 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.4926362139603076e-27,2.980395976796452e-27,-2.095693358873541e-19)
    sum a = (3.74774336965851e-25,-2.759138835683363e-25,-1.4621919541133538e-18)
    sum e = 1.2175930123937094e-09
    sum de = 7.35893359994886e-10
Info: cfl dt = 0.0037713849593161266 cfl multiplier : 0.9999999999796021       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2203e+04 | 11520 |      1 | 2.730e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.687585043745116 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5450714459214215, dt = 0.0037713849593161266 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (2.1%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 1.06 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.5%)
   LB compute        : 264.97 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.044551816387214e-27,1.826431996832185e-27,-2.1499799193184854e-19)
    sum a = (-2.4424594857547124e-25,-2.6264873967069446e-25,-1.411072157684051e-18)
    sum e = 1.2203418759878265e-09
    sum de = 7.211502310862577e-10
Info: cfl dt = 0.0037706030043220557 cfl multiplier : 0.9999999999864014       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1709e+04 | 11520 |      1 | 2.762e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.1561713776073 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.5488428308807377, dt = 0.0037706030043220557 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (2.0%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 293.91 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.9666343664294454e-27,8.49712142800356e-28,-2.202222033914855e-19)
    sum a = (-2.1766508306341335e-25,2.840936915830038e-25,-1.3537818651351095e-18)
    sum e = 1.223033641442363e-09
    sum de = 7.059602338496443e-10
Info: cfl dt = 0.0037658789610396566 cfl multiplier : 0.9999999999909344       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7404e+04 | 11520 |      1 | 3.080e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.07362762885751 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5526134338850598, dt = 0.0037658789610396566 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (1.9%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 310.57 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1893053506451146e-27,2.9433349056253846e-27,-2.2521236696134477e-19)
    sum a = (-1.0781882019892927e-25,3.1798483577670175e-25,-1.2893989473648584e-18)
    sum e = 1.2256639651509721e-09
    sum de = 6.903583797390047e-10
Info: cfl dt = 0.0037603251681039953 cfl multiplier : 0.9999999999939563       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1677e+04 | 11520 |      1 | 2.764e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.047064951827494 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5563793128460994, dt = 0.0037603251681039953 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.8%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.5%)
   LB compute        : 308.43 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.990960088590573e-27,4.220205554447714e-27,-2.299397349849213e-19)
    sum a = (1.4439535077570632e-25,1.2276507725506196e-25,-1.2164656805484602e-18)
    sum e = 1.22823097447964e-09
    sum de = 6.743673318177031e-10
Info: cfl dt = 0.0037490603780919447 cfl multiplier : 0.9999999999959709       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9610e+04 | 11520 |      1 | 2.908e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.54635601957945 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5601396380142034, dt = 0.0037490603780919447 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (2.3%)
   patch tree reduce : 1.77 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 260.75 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.997844544914538e-27,4.314708306312661e-27,-2.343631610696293e-19)
    sum a = (1.1725891049815576e-25,4.5662966918095725e-27,-1.1329051041975636e-18)
    sum e = 1.2307295768326255e-09
    sum de = 6.580293048830896e-10
Info: cfl dt = 0.003695379281013801 cfl multiplier : 0.9999999999973138        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2058e+04 | 11520 |      1 | 2.739e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.27427386056437 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5638886983922954, dt = 0.003695379281013801 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.8%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 300.22 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.390157734495596e-27,4.1050946583443905e-27,-2.383930577612769e-19)
    sum a = (1.3154410336066496e-25,-2.802021111677517e-25,-1.0366992400478485e-18)
    sum e = 1.2331309660492944e-09
    sum de = 6.415490468093547e-10
Info: cfl dt = 0.003633079611233736 cfl multiplier : 0.9999999999982091        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1969e+04 | 11520 |      1 | 2.745e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.46629859054593 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5675840776733092, dt = 0.003633079611233736 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (2.0%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 1.56 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 274.88 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.885061993330637e-27,2.561390798082249e-27,-2.419817047311556e-19)
    sum a = (3.3498258916832045e-25,3.1175775236099184e-25,-9.240550874350333e-19)
    sum e = 1.2354316601161025e-09
    sum de = 6.249984215628476e-10
Info: cfl dt = 0.003561506063808248 cfl multiplier : 0.999999999998806         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1725e+04 | 11520 |      1 | 2.761e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.372258585715706 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5712171572845429, dt = 0.003561506063808248 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.01 us    (2.4%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1.08 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.4%)
   LB compute        : 273.66 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.444774546080793e-27,4.767870779827856e-27,-2.4506811732491746e-19)
    sum a = (3.271065074939737e-26,1.8874303701799494e-25,-7.897095778102064e-19)
    sum e = 1.2376278869705227e-09
    sum de = 6.084472586992712e-10
Info: cfl dt = 0.0034801652754549587 cfl multiplier : 0.9999999999992039       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1578e+04 | 11520 |      1 | 2.771e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.27501232525565 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5747786633483511, dt = 0.0034801652754549587 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.9%)
   patch tree reduce : 2.26 us    (0.7%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 296.26 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 17.70 us   (95.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.020671506239273e-27,5.13669371877337e-27,-2.4757718665366988e-19)
    sum a = (-1.3135236744034828e-25,1.4951934589035384e-26,-6.265645643569737e-19)
    sum e = 1.2397162907669997e-09
    sum de = 5.919667753311147e-10
Info: cfl dt = 0.0033889227468194352 cfl multiplier : 0.9999999999994692       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2133e+04 | 11520 |      1 | 2.734e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.82225933877373 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5782588286238061, dt = 0.0033889227468194352 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (2.1%)
   patch tree reduce : 1.87 us    (0.7%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.5%)
   LB compute        : 263.93 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.319241570575781e-27,4.907598765158095e-27,-2.4941670719209504e-19)
    sum a = (-1.6497211689330865e-25,3.8581566490341834e-26,-4.2543579959930315e-19)
    sum e = 1.2416941648991968e-09
    sum de = 5.756272641981028e-10
Info: cfl dt = 0.0032881076042554558 cfl multiplier : 0.9999999999996462       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1860e+04 | 11520 |      1 | 2.752e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.33180716755517 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5816477513706255, dt = 0.0032881076042554558 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.6%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 333.71 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.619610242663903e-27,5.0957374699715476e-27,-2.504747785896109e-19)
    sum a = (-9.727702847690667e-26,-4.0864368116680047e-25,-1.7478879638071757e-19)
    sum e = 1.243559685534885e-09
    sum de = 5.594952106418e-10
Info: cfl dt = 0.0031785883613041086 cfl multiplier : 0.9999999999997641       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2102e+04 | 11520 |      1 | 2.736e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.26125688572349 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.584935858974881, dt = 0.0031785883613041086 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.9%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 292.46 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.499244378129657e-27,3.066864586204639e-27,-2.5061828964600085e-19)
    sum a = (-6.650930749871111e-26,-1.6500522861191667e-25,1.394232525379086e-19)
    sum e = 1.245312132209335e-09
    sum de = 5.436300163833e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011374321627005059
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.538374931713726e-27,3.464811968742561e-27,-2.501188884957567e-19)
    sum a = (1.3601825932765689e-25,1.8016103430609892e-25,1.3692648040355793e-19)
    sum e = 1.2452805803854291e-09
    sum de = 5.435020288197137e-10
Info: cfl dt = 0.0015262605295808217 cfl multiplier : 0.4999999999999214       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7907e+04 | 11520 |      1 | 4.128e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.720298439539494 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5881144473361851, dt = 0.0015262605295808217 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (2.0%)
   patch tree reduce : 1.98 us    (0.7%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 280.43 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.024985008417076e-27,4.193616497685896e-27,-2.499138843665414e-19)
    sum a = (-4.1001721072979237e-25,1.7504622725996567e-25,3.226975589871076e-19)
    sum e = 1.246111283582355e-09
    sum de = 5.358207650440623e-10
Info: cfl dt = 0.0019969366720648486 cfl multiplier : 0.6666666666666142       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7436e+04 | 11520 |      1 | 3.077e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.855137714353994 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.589640707865766, dt = 0.0019969366720648486 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (2.3%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.5%)
   LB compute        : 268.84 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.74376411253286e-27,4.5640430146268265e-27,-2.4912772738414446e-19)
    sum a = (-4.218588974468553e-26,-1.6921024351535377e-25,6.0441842354671e-19)
    sum e = 1.2471768685251896e-09
    sum de = 5.256486887673462e-10
Info: cfl dt = 0.002267893739272367 cfl multiplier : 0.7777777777777427        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7577e+04 | 11520 |      1 | 3.066e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.449958080495588 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5916376445378307, dt = 0.002267893739272367 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.2%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 272.29 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.042165057010796e-27,3.8530945433621696e-27,-2.474756648568109e-19)
    sum a = (2.18262047477166e-25,9.428275829995394e-26,9.896361572546312e-19)
    sum e = 1.248360250028133e-09
    sum de = 5.139370122037606e-10
Info: cfl dt = 0.002402826928538959 cfl multiplier : 0.8518518518518284        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2976e+04 | 11520 |      1 | 2.681e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.45773369100956 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5939055382771031, dt = 0.002402826928538959 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (1.7%)
   patch tree reduce : 2.18 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 335.52 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.790678426316701e-27,4.194353276764871e-27,-2.446609074983576e-19)
    sum a = (1.9511938320711596e-25,-6.350792957064357e-26,1.4924557656438625e-18)
    sum e = 1.2495832459805711e-09
    sum de = 5.013315752085109e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011105404456305005
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.8098888573023185e-27,4.104552909021615e-27,-2.440568048055257e-19)
    sum a = (3.993595713325875e-25,1.9923061046779417e-25,1.4894349475546654e-18)
    sum e = 1.2495625527798914e-09
    sum de = 5.012549262963765e-10
Info: cfl dt = 0.0012209203401882614 cfl multiplier : 0.4506172839506095       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8265e+04 | 11520 |      1 | 4.076e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.224052544527222 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5963083652056421, dt = 0.0012209203401882614 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.9%)
   patch tree reduce : 1.67 us    (0.6%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 282.32 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.4841283944557115e-27,4.595941214751844e-27,-2.422419787774198e-19)
    sum a = (2.6637597501138945e-26,-3.5840817660469677e-25,1.7926510750216972e-18)
    sum e = 1.2501758383368624e-09
    sum de = 4.947840231371638e-10
Info: cfl dt = 0.0016832117625895718 cfl multiplier : 0.633744855967073        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2087e+04 | 11520 |      1 | 2.737e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.057941226211216 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5975292855458304, dt = 0.0016832117625895718 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.5%)
   patch tree reduce : 2.21 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.4%)
   LB compute        : 372.61 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1498263888888887
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.357933307208402e-27,3.7584401016868465e-27,-2.39039465699984e-19)
    sum a = (1.3120232454791238e-25,-1.9202993850913803e-25,2.2687372104937735e-18)
    sum e = 1.2510064924370419e-09
    sum de = 4.857551686475951e-10
Info: cfl dt = 0.0019503120357178376 cfl multiplier : 0.7558299039780486       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3099e+04 | 11520 |      1 | 2.673e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.67043525894613 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.59921249730842, dt = 0.000787502691580122 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (2.1%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1.05 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 278.74 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.149652777777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.537274003019981e-27,3.879445230421967e-27,-2.368521393475443e-19)
    sum a = (-3.3050903996057006e-25,6.595438283240577e-26,2.5168237671342857e-18)
    sum e = 1.2513789906372818e-09
    sum de = 4.814490279930435e-10
Info: cfl dt = 0.0021281674602800786 cfl multiplier : 0.8372199359853658       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2629e+04 | 11520 |      1 | 2.702e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.490828243205577 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 181                                                     [SPH][rank=0]
Info: time since start : 80.080419002 (s)                                             [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[0. 0. 0. ... 0. 0. 0.]
(11520, 3)
[[0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 ...
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]]
compute original rho
Info: Dumping state to _to_trash/dusty_settle/dump/0000006.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 13.03 us   (71.4%)
Info: dump to _to_trash/dusty_settle/dump/0000006.sham                      [Shamrock Dump][rank=0]
              - took 1.04 ms, bandwidth = 2.85 GB/s
Info: evolve_until (target_time = 0.70s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.6000000000000001, dt = 0.0021281674602800786 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (1.0%)
   patch tree reduce : 1.16 us    (0.4%)
   gen split merge   : 481.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 297.15 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (58.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1492187499999997
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.669077373326528e-27,3.889586777744323e-27,-2.3139826617261977e-19)
    sum a = (3.008842800335932e-25,5.204676757789815e-26,3.2879752922698308e-18)
    sum e = 1.2524072815077314e-09
    sum de = 4.698101527055807e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011658096876279684
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.4805961888712155e-27,4.00625791189724e-27,-2.3057767022911394e-19)
    sum a = (-3.205318377127711e-26,-1.667194101490698e-25,3.283872321073282e-18)
    sum e = 1.2523887082400553e-09
    sum de = 4.697415990561544e-10
Info: cfl dt = 0.0010890078410523425 cfl multiplier : 0.4457399786617886       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.2839e+04 | 11520 |      1 | 5.044e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.188960954619521 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6021281674602802, dt = 0.0010890078410523425 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.52 us   (3.1%)
   patch tree reduce : 1.99 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 344.33 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1473090277777773
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.9198097948934535e-27,3.631454060428285e-27,-2.2700586497634e-19)
    sum a = (3.6727448936118536e-25,6.8728139365016e-26,3.742353912901633e-18)
    sum e = 1.252901796687379e-09
    sum de = 4.6368569246724046e-10
Info: cfl dt = 0.001509441253579407 cfl multiplier : 0.6304933191078591        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2537e+04 | 11520 |      1 | 2.708e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.476090583711445 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6032171753013326, dt = 0.001509441253579407 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.02 us    (2.0%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 322.53 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (63.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1471354166666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.801550157656293e-27,3.766154612043168e-27,-2.2110737274211127e-19)
    sum a = (-1.3139284694974605e-25,-2.316585980905402e-25,4.4567453549519994e-18)
    sum e = 1.2536005190940324e-09
    sum de = 4.551746840432736e-10
Info: cfl dt = 0.0017528972474966675 cfl multiplier : 0.7536622127385728       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2536e+04 | 11520 |      1 | 2.708e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.0641823789659 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.604726616554912, dt = 0.0017528972474966675 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (2.2%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 275.14 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (59.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.145138888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.151147590705019e-27,3.1897333326101074e-27,-2.1275597508900458e-19)
    sum a = (-2.6746502117000556e-25,-6.105038128275091e-26,5.418443456740504e-18)
    sum e = 1.254394129061243e-09
    sum de = 4.451106109260301e-10
Info: cfl dt = 0.0018782735868486159 cfl multiplier : 0.8357748084923818       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8980e+04 | 11520 |      1 | 2.955e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.352731057544055 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6064795138024087, dt = 0.0018782735868486159 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (2.2%)
   patch tree reduce : 1.75 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.5%)
   LB compute        : 269.81 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.142795138888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.603016460907291e-27,3.1426661514473775e-27,-2.0173577168454238e-19)
    sum a = (7.701126981052326e-26,1.5231251871869232e-25,6.632511770908089e-18)
    sum e = 1.255223422952958e-09
    sum de = 4.3408987306764406e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01079722979001185
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.0875462202111834e-27,3.267831914981414e-27,-2.005956098751313e-19)
    sum a = (1.4821810735699305e-25,-2.3846539662156573e-25,6.626811269326398e-18)
    sum e = 1.2552052908390508e-09
    sum de = 4.340256170446069e-10
Info: cfl dt = 0.0009632298275155543 cfl multiplier : 0.44525826949746056      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5959e+04 | 11520 |      1 | 4.438e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.236640697459194 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6083577873892574, dt = 0.0009632298275155543 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (2.1%)
   patch tree reduce : 1.71 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 282.49 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (8.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.141579861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.253126483224266e-27,2.825244388246796e-27,-1.9421783026410935e-19)
    sum a = (6.084755033630379e-26,6.453477423901587e-25,7.336962688736798e-18)
    sum e = 1.2556252844003144e-09
    sum de = 4.282842668596074e-10
Info: cfl dt = 0.001337785435664709 cfl multiplier : 0.6301721796649736        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2365e+04 | 11520 |      1 | 2.719e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.752246879196658 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6093210172167729, dt = 0.001337785435664709 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (1.7%)
   patch tree reduce : 1.89 us    (0.5%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 349.83 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1406250000000004
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.258034732088612e-27,4.391203310688552e-27,-1.84060513137313e-19)
    sum a = (-1.415295401981701e-25,-5.813793692351018e-27,8.427612752673762e-18)
    sum e = 1.2561980281004252e-09
    sum de = 4.201779251000975e-10
Info: cfl dt = 0.0015581810897459362 cfl multiplier : 0.753448119776649        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2110e+04 | 11520 |      1 | 2.736e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.604460273541964 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6106588026524377, dt = 0.0015581810897459362 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.9%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 297.23 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1394965277777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.919138025733212e-27,3.787044465929389e-27,-1.7019923177704858e-19)
    sum a = (1.3404663851232089e-25,-2.2633853306099385e-27,9.868762811145195e-18)
    sum e = 1.2568498794750382e-09
    sum de = 4.105326872163042e-10
Info: cfl dt = 0.0016769323251026485 cfl multiplier : 0.8356320798510994       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2297e+04 | 11520 |      1 | 2.724e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.595987835920273 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6122169837421836, dt = 0.0016769323251026485 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (2.1%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 285.41 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1380208333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.248055709563089e-27,3.618538756573318e-27,-1.5252720126110172e-19)
    sum a = (4.566227347896257e-26,3.4488888726475457e-26,1.1651475588761358e-17)
    sum e = 1.2575331881020895e-09
    sum de = 3.998887436204509e-10
Info: cfl dt = 0.0017315473966209697 cfl multiplier : 0.8904213865673997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2011e+04 | 11520 |      1 | 2.742e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.015656444462035 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6138939160672863, dt = 0.0017315473966209697 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (1.8%)
   patch tree reduce : 2.34 us    (0.7%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 324.75 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.135677083333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.052798418648367e-27,4.219057045883431e-27,-1.3085738039632248e-19)
    sum a = (2.3781148351900283e-25,4.0115731228528545e-25,1.3777497789865126e-17)
    sum e = 1.258218856380654e-09
    sum de = 3.885889936452023e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011566337145155928
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.2275017402569885e-27,4.2603166743060074e-27,-1.2901672940787495e-19)
    sum a = (-2.5821593001201678e-26,2.8868148488794113e-25,1.3768294835997516e-17)
    sum e = 1.2581978939811487e-09
    sum de = 3.885288058712858e-10
Info: cfl dt = 0.0008741144589697 cfl multiplier : 0.4634737955224666          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7602e+04 | 11520 |      1 | 4.174e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.935691531671683 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6156254634639072, dt = 0.0008741144589697 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.81 us    (2.2%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 294.19 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.134635416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.934144481974092e-27,4.486897911063605e-27,-1.1698964368357475e-19)
    sum a = (-1.5443582934440545e-26,1.635184951104376e-25,1.4967886862807928e-17)
    sum e = 1.2585402213250158e-09
    sum de = 3.8271383290781604e-10
Info: cfl dt = 0.0011935257285687118 cfl multiplier : 0.6423158636816444       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2109e+04 | 11520 |      1 | 2.736e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.502552031379608 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6164995779228769, dt = 0.0011935257285687118 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.7%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 340.05 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 5.00 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1342881944444443
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.053285993038865e-27,4.024374009250851e-27,-9.860078500931069e-20)
    sum a = (-3.33222467288596e-25,1.816255777553171e-26,1.6747122824926872e-17)
    sum e = 1.2589975975831221e-09
    sum de = 3.746240204805732e-10
Info: cfl dt = 0.001385846028003082 cfl multiplier : 0.7615439091210963        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1701e+04 | 11520 |      1 | 2.763e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.553610246112683 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6176931036514456, dt = 0.001385846028003082 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.9%)
   patch tree reduce : 1.94 us    (0.7%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 276.03 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.133159722222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.47848996157413e-27,4.010678586371088e-27,-7.433006243838012e-20)
    sum a = (-3.2920329407284377e-25,8.779494177017864e-26,1.9034779474221304e-17)
    sum e = 1.2595149008101703e-09
    sum de = 3.6501374195545996e-10
Info: cfl dt = 0.0014841887531050594 cfl multiplier : 0.8410292727473975       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1096e+04 | 11520 |      1 | 2.803e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.797874373961204 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6190789496794487, dt = 0.0014841887531050594 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (2.0%)
   patch tree reduce : 1.98 us    (0.7%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 271.72 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.13046875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.313559797748377e-27,4.2625703514887534e-27,-4.4493683150378103e-20)
    sum a = (-2.344767347276722e-25,2.1008431977989794e-25,2.177177030690522e-17)
    sum e = 1.260052383742263e-09
    sum de = 3.544598114295508e-10
Info: cfl dt = 0.0015293982893405244 cfl multiplier : 0.8940195151649316       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1581e+04 | 11520 |      1 | 2.770e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.285795539601576 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6205631384325537, dt = 0.0015293982893405244 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.8%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 304.03 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1279513888888886
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.648660018919632e-27,4.7706878763062875e-27,-9.164871832479704e-21)
    sum a = (3.082239865384464e-25,-2.799053192187624e-25,2.492946827242548e-17)
    sum e = 1.260588530998714e-09
    sum de = 3.433050099376819e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011141465693942814
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.493875642340953e-27,4.203974744737363e-27,-6.75019330539173e-21)
    sum a = (3.5864671966650126e-27,-4.96324898919142e-25,2.4917394975296023e-17)
    sum e = 1.2605671984194248e-09
    sum de = 3.432883804614267e-10
Info: cfl dt = 0.0007725153289233094 cfl multiplier : 0.4646731717216439       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7433e+04 | 11520 |      1 | 4.199e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.111250250200344 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6220925367218942, dt = 0.0007725153289233094 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (1.7%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 341.40 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.126822916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.165618892684862e-27,3.738157007042134e-27,1.2489636476076183e-20)
    sum a = (1.204406692807346e-25,-3.883037245131697e-25,2.6656106229854203e-17)
    sum e = 1.2608355798029942e-09
    sum de = 3.375573854920429e-10
Info: cfl dt = 0.0010544340450710523 cfl multiplier : 0.6431154478144293       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1444e+04 | 11520 |      1 | 2.780e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.005019261794297 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6228650520508175, dt = 0.0010544340450710523 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (2.0%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 301.65 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 us    (62.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1258680555555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.061581352739068e-27,2.988375944320934e-27,4.1268353728646395e-20)
    sum a = (1.1136216414950135e-25,2.7216099097971466e-26,2.9186122451001404e-17)
    sum e = 1.2611925395650505e-09
    sum de = 3.2962447134934975e-10
Info: cfl dt = 0.0012279097360968572 cfl multiplier : 0.7620769652096197       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1311e+04 | 11520 |      1 | 2.789e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.612495530104342 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6239194860958887, dt = 0.0012279097360968572 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.7%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 307.31 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 us    (63.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1243055555555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.0962316394237845e-27,3.635007935985691e-27,7.844013764702007e-20)
    sum a = (-3.583305114217837e-25,-6.350349156019139e-25,3.2373014964347335e-17)
    sum e = 1.2615959129189027e-09
    sum de = 3.2023910591263345e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01058737020260718
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.182803181203299e-27,2.9148713962067634e-27,8.039673609654116e-20)
    sum a = (-9.208316936959404e-26,-8.75952312998307e-26,3.236323207257629e-17)
    sum e = 1.2615807933526628e-09
    sum de = 3.202564157397434e-10
Info: cfl dt = 0.0006769310154623368 cfl multiplier : 0.4206923217365399       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7050e+04 | 11520 |      1 | 4.259e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.379764025572252 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6251473958319855, dt = 0.0006769310154623368 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (1.8%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 346.50 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.124131944444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.3750375108969336e-27,3.1752577907055476e-27,1.0229841602434307e-19)
    sum a = (4.392160256692303e-25,2.28934769175517e-25,3.423898239808799e-17)
    sum e = 1.2618004291199797e-09
    sum de = 3.1502116969634164e-10
Info: cfl dt = 0.0009743800543263779 cfl multiplier : 0.6137948811576933       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1267e+04 | 11520 |      1 | 2.792e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.72957758869014 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.6258243268474478, dt = 0.0009743800543263779 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (2.0%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 306.01 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (63.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.123263888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.286736611209255e-27,2.8351258958942196e-27,1.3629507826579176e-19)
    sum a = (-8.553433019610131e-26,1.6274184328130674e-25,3.708807224516388e-17)
    sum e = 1.2621088818126893e-09
    sum de = 3.074210061807062e-10
Info: cfl dt = 0.0011576825152729284 cfl multiplier : 0.7425299207717956       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0851e+04 | 11520 |      1 | 2.820e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.438993116735961 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6267987069017742, dt = 0.0011576825152729284 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.8%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 1.53 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.4%)
   LB compute        : 313.18 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1227430555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.965865082391104e-27,3.570518096602504e-27,1.8061933699427007e-19)
    sum a = (2.7811069874216357e-25,1.2183448193837123e-25,4.071108423676709e-17)
    sum e = 1.2624638445614645e-09
    sum de = 2.98310483739158e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010949723029963814
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.667278765574913e-27,3.0532125032706982e-27,1.8271647338821899e-19)
    sum a = (-2.0589594741565651e-26,2.9064530451302913e-25,4.070059890380249e-17)
    sum e = 1.2624496708753263e-09
    sum de = 2.9836053630576715e-10
Info: cfl dt = 0.0006342507183204459 cfl multiplier : 0.41417664025726514      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7029e+04 | 11520 |      1 | 4.262e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.778363311674264 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6279563894170471, dt = 0.0006342507183204459 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (2.0%)
   patch tree reduce : 2.38 us    (0.8%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 274.69 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1217881944444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.315228385662526e-27,3.7903383018118636e-27,2.0852478870536974e-19)
    sum a = (-7.507255268205535e-25,-2.0978475407437605e-25,4.28019803051647e-17)
    sum e = 1.2626415976006007e-09
    sum de = 2.9333561872329524e-10
Info: cfl dt = 0.0009245299410065595 cfl multiplier : 0.6094510935048434       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1039e+04 | 11520 |      1 | 2.807e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.13405022837338 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.6285906401353676, dt = 0.0009245299410065595 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.8%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 306.71 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.45 us    (60.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1209201388888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.744137919565575e-27,2.8850535134812036e-27,2.4876290907838295e-19)
    sum a = (-1.392814105284895e-25,-2.3288459847795396e-26,4.6012916945143897e-17)
    sum e = 1.2629142919112862e-09
    sum de = 2.8599341600565065e-10
Info: cfl dt = 0.001106859861992151 cfl multiplier : 0.7396340623365623        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0691e+04 | 11520 |      1 | 2.831e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.756150630766582 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6295151700763741, dt = 0.001106859861992151 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.7%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 325.46 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.119878472222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.47564695519807e-27,2.9547441463630355e-27,3.0117706616777817e-19)
    sum a = (1.4645711867835214e-25,2.1757346241794555e-26,5.0095236620551113e-17)
    sum e = 1.2632300182815632e-09
    sum de = 2.7719818483389625e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010591969101563655
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.4116338552189246e-27,3.0279019749106297e-27,3.0343633408981103e-19)
    sum a = (2.499709387188329e-26,-2.190823859716855e-25,5.008394082876896e-17)
    sum e = 1.26321682218886e-09
    sum de = 2.7728364676747854e-10
Info: cfl dt = 0.0006097636300837176 cfl multiplier : 0.4132113541121874       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6468e+04 | 11520 |      1 | 4.352e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.155010493872243 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6306220299383662, dt = 0.0006097636300837176 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (2.2%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 270.75 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1196180555555553
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.5142020769314866e-27,3.152027579744937e-27,3.33969456520987e-19)
    sum a = (3.1618328090877143e-25,-9.395268127257332e-26,5.2449992613574346e-17)
    sum e = 1.2633884662666848e-09
    sum de = 2.7243418485759237e-10
Info: cfl dt = 0.000891787780744447 cfl multiplier : 0.6088075694081249        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5033e+04 | 11520 |      1 | 3.288e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.6755836320397375 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6312317935684499, dt = 0.000891787780744447 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.8%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 292.08 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1185763888888887
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.1301668170024375e-27,2.8871338308806613e-27,3.8146509870142626e-19)
    sum a = (-1.675071570043311e-25,-1.2360968611924179e-25,5.605969012504942e-17)
    sum e = 1.2636328059865224e-09
    sum de = 2.6537511127745266e-10
Info: cfl dt = 0.0010730741065834244 cfl multiplier : 0.7392050462720832       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0701e+04 | 11520 |      1 | 2.830e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.342764181546668 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6321235813491944, dt = 0.0010730741065834244 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.72 us    (2.2%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1.45 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.5%)
   LB compute        : 290.56 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1177083333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.58599045726097e-27,2.654485001707979e-27,4.432308137756149e-19)
    sum a = (-3.2547259153648303e-26,-6.459524213142677e-26,6.064487717177946e-17)
    sum e = 1.2639167924557831e-09
    sum de = 2.569559493751891e-10
Info: cfl dt = 0.0011896541372452029 cfl multiplier : 0.8261366975147221       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9834e+04 | 11520 |      1 | 2.892e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.357759770076534 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6331966554557779, dt = 0.0011896541372452029 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (2.0%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.5%)
   LB compute        : 280.00 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.115972222222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.521717317606893e-27,1.946483646759221e-27,5.178373912482692e-19)
    sum a = (-2.5523552861772707e-25,1.2750404029102653e-25,6.604661554249028e-17)
    sum e = 1.2642196409066585e-09
    sum de = 2.4775923099378364e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012514953978602118
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.7133232180861084e-27,2.7137740475925225e-27,5.210504856077454e-19)
    sum a = (-4.094231067524639e-25,4.478618247813763e-25,6.603055031957652e-17)
    sum e = 1.2642047575231505e-09
    sum de = 2.479322034473708e-10
Info: cfl dt = 0.0006343367509968823 cfl multiplier : 0.4420455658382407       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.3483e+04 | 11520 |      1 | 4.906e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.730323560195787 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6343863095930231, dt = 0.0006343367509968823 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.9%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1.07 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 279.68 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1156249999999996
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2076327302346075e-27,2.3410505135230246e-27,5.629265254563833e-19)
    sum a = (8.887115930483141e-27,-5.37443065758556e-25,6.905587016183729e-17)
    sum e = 1.2643647963347826e-09
    sum de = 2.430660856157584e-10
Info: cfl dt = 0.0008977047773858432 cfl multiplier : 0.6280303772254938       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4711e+04 | 11520 |      1 | 3.319e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.880773318307809 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.63502064634402, dt = 0.0008977047773858432 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 23.71 us   (7.1%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 297.24 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.116059027777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.797940222378914e-27,1.6039247149818589e-27,6.258778461468499e-19)
    sum a = (1.2270544148961086e-25,-1.319753358215942e-25,7.350697767849501e-17)
    sum e = 1.264584060499459e-09
    sum de = 2.3630638344532723e-10
Info: cfl dt = 0.001067559576724496 cfl multiplier : 0.7520202514836626        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0546e+04 | 11520 |      1 | 2.841e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.374506147516096 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6359183511214058, dt = 0.001067559576724496 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.7%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 326.72 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.115885416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9250996234207636e-27,1.941629572827153e-27,7.06348808500765e-19)
    sum a = (-1.1376839794154073e-25,9.458509776200846e-26,7.906642555219619e-17)
    sum e = 1.2648353979739195e-09
    sum de = 2.2846770339403024e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011507399828869733
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3825094116265175e-27,1.5935231279845706e-27,7.093163427713507e-19)
    sum a = (5.214551331045907e-25,-3.9043396953021435e-25,7.905158802641001e-17)
    sum e = 1.2648238723402412e-09
    sum de = 2.286490811483684e-10
Info: cfl dt = 0.0005901154155953879 cfl multiplier : 0.41734008382788756      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6767e+04 | 11520 |      1 | 4.304e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.929654200648502 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6369859106981303, dt = 0.0005901154155953879 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (2.1%)
   patch tree reduce : 1.62 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 265.62 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1157118055555557
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.965865082391104e-27,1.0883527194829344e-27,7.559579857012943e-19)
    sum a = (-1.4528381966505804e-25,-7.87669190078389e-25,8.225405437479113e-17)
    sum e = 1.2649611295746284e-09
    sum de = 2.243827519707886e-10
Info: cfl dt = 0.0008629815852935565 cfl multiplier : 0.6115600558852584       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8014e+04 | 11520 |      1 | 3.030e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.010269680254363 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6375760261137257, dt = 0.0008629815852935565 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (2.1%)
   patch tree reduce : 1.98 us    (0.7%)
   gen split merge   : 1.09 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 272.89 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.115798611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.304410829255211e-27,2.60039674932208e-29,8.278866197365925e-19)
    sum a = (-3.1420559250102035e-25,3.439458100436671e-28,8.709981847951724e-17)
    sum e = 1.2651560262438464e-09
    sum de = 2.1830301849814836e-10
Info: cfl dt = 0.0010444227629962958 cfl multiplier : 0.741040037256839        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0504e+04 | 11520 |      1 | 2.844e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.923139217633898 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6384390076990192, dt = 0.0010444227629962958 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (2.0%)
   patch tree reduce : 1.65 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 280.67 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1149305555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2286526039582944e-27,7.832395008958104e-28,9.209465646731987e-19)
    sum a = (-3.7943879863494747e-25,-1.0126430349253386e-25,9.32256562335088e-17)
    sum e = 1.2653836078146502e-09
    sum de = 2.1120324254965087e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010401131175371166
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4402989894554838e-27,1.3709291662426005e-27,9.24145548289682e-19)
    sum a = (3.299327920409203e-25,-6.92995332107337e-26,9.320966107577381e-17)
    sum e = 1.2653729834866184e-09
    sum de = 2.114084417426992e-10
Info: cfl dt = 0.0005845257594679672 cfl multiplier : 0.4136800124189463       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6658e+04 | 11520 |      1 | 4.321e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.700589798352853 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6394834304620155, dt = 0.0005845257594679672 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (2.0%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 290.23 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1144965277777774
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.7303558167941675e-27,6.8130394832238495e-28,9.786206446496965e-19)
    sum a = (-1.771986623292712e-25,3.716833753697693e-26,9.676707471700985e-17)
    sum e = 1.2654988170069197e-09
    sum de = 2.075220329379306e-10
Info: cfl dt = 0.0008620034517811894 cfl multiplier : 0.6091200082792976       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0179e+04 | 11520 |      1 | 2.867e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.339308904265933 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6400679562214835, dt = 0.0008620034517811894 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.44 us    (2.0%)
   patch tree reduce : 1.80 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 306.26 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (63.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.114149305555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2349543261506837e-27,1.068936423754663e-27,1.0630738976897e-18)
    sum a = (1.2829178714628784e-25,1.2682724369706964e-25,1.0217779229769364e-16)
    sum e = 1.2656791527043616e-09
    sum de = 2.0198326765535727e-10
Info: cfl dt = 0.00105049692053785 cfl multiplier : 0.7394133388528651         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0392e+04 | 11520 |      1 | 2.852e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.880654443962834 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6409299596732647, dt = 0.00105049692053785 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.6%)
   patch tree reduce : 1.97 us    (0.5%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 346.74 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.113888888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.6810349584486924e-27,-3.36317979578989e-29,1.17274337438551e-18)
    sum a = (2.87294606621636e-25,5.3963988093238325e-25,1.0903689797543537e-16)
    sum e = 1.2658913775576616e-09
    sum de = 1.955395393079566e-10
Info: cfl dt = 0.0011824594220391997 cfl multiplier : 0.8262755592352434       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9390e+04 | 11520 |      1 | 2.925e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.930978713683343 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6419804565938025, dt = 0.0011824594220391997 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.2%)
   patch tree reduce : 1.97 us    (0.7%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.5%)
   LB compute        : 279.17 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.113888888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7397780150857433e-27,1.0949403912478839e-27,1.305277826385666e-18)
    sum a = (-1.3763379914811904e-25,6.10448337696857e-26,1.171068459924587e-16)
    sum e = 1.2661214099446503e-09
    sum de = 1.8869365803523828e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.017034381284354517
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.544514129109283e-27,8.661054773075407e-28,1.310049009998835e-18)
    sum a = (-9.444086242231272e-26,2.2034721895055575e-26,1.1708299058281135e-16)
    sum e = 1.2661081373760181e-09
    sum de = 1.889935741989957e-10
Info: cfl dt = 0.0006410151071395068 cfl multiplier : 0.4420918530784144       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4533e+04 | 11520 |      1 | 4.696e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.06556674420896 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.6431629160158417, dt = 0.0006410151071395068 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.9%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1.07 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 283.72 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1131944444444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.20825691952431e-27,1.3723160445089057e-27,1.385086872972191e-18)
    sum a = (2.4966027798718054e-25,6.189915078172964e-26,1.2161765927796922e-16)
    sum e = 1.2662321368332214e-09
    sum de = 1.853902858077123e-10
Info: cfl dt = 0.0009171839040607883 cfl multiplier : 0.6280612353856095       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8716e+04 | 11520 |      1 | 2.976e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.755465835186094 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6438039311229813, dt = 0.0009171839040607883 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (1.9%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 309.99 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.37 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.11328125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5815005329436728e-27,6.393508807666553e-28,1.4980860358876685e-18)
    sum a = (-5.026490638134934e-25,-8.355664178835023e-26,1.2829222670956562e-16)
    sum e = 1.266404107259659e-09
    sum de = 1.804939845810419e-10
Info: cfl dt = 0.0011113652720782876 cfl multiplier : 0.7520408235904062       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3423e+04 | 11520 |      1 | 3.447e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.579723385271581 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6447211150270421, dt = 0.0011113652720782876 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.0%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 311.14 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 18.07 us   (95.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1133680555555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1544027969157153e-27,1.6587064065009107e-27,1.643726457858498e-18)
    sum a = (-2.1914895612846816e-25,-1.2816974185885297e-25,1.3667267424697906e-16)
    sum e = 1.2666055978875895e-09
    sum de = 1.7492252229073956e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010740293202660199
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7030865110226743e-27,1.709327463221047e-27,1.6483833282635623e-18)
    sum a = (3.5517397648767326e-25,-4.879148691122679e-25,1.3664939016336464e-16)
    sum e = 1.2665936325934206e-09
    sum de = 1.7519227488844585e-10
Info: cfl dt = 0.0006228031052636204 cfl multiplier : 0.41734694119680205      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6525e+04 | 11520 |      1 | 4.343e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.212220878038435 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6458324802991204, dt = 0.0006228031052636204 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (2.1%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.5%)
   LB compute        : 278.24 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1130208333333336
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6726877789532336e-27,6.448983938318758e-29,1.7334760520993746e-18)
    sum a = (2.6960913496971324e-26,7.576793344478073e-26,1.4148492516099678e-16)
    sum e = 1.2667056535684374e-09
    sum de = 1.7217706062838745e-10
Info: cfl dt = 0.0009138422595180309 cfl multiplier : 0.6115646274645347       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8314e+04 | 11520 |      1 | 3.007e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.456819450846783 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6464552834043841, dt = 0.0009138422595180309 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (1.7%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 335.78 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.112326388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.270605671514024e-27,-7.974550031254378e-29,1.8642767402850585e-18)
    sum a = (1.9274279393801888e-25,4.456871996598099e-26,1.48748453634499e-16)
    sum e = 1.2668656243686753e-09
    sum de = 1.6798846735986025e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011628322159739683
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8257644675966603e-27,3.2175575778278537e-28,1.86759560095459e-18)
    sum a = (1.6551559981391697e-25,-4.929963910800098e-25,1.4873185958252023e-16)
    sum e = 1.2668573021901696e-09
    sum de = 1.6816911979277439e-10
Info: cfl dt = 0.0005563925202423958 cfl multiplier : 0.3705215424881782       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.2787e+04 | 11520 |      1 | 5.055e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.507550483424921 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6473691256639021, dt = 0.0005563925202423958 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (1.7%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 345.64 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1118055555555553
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.999470970451375e-27,-8.75120186038524e-28,1.9503413149164446e-18)
    sum a = (-3.6236355342019893e-25,-2.2700423462882027e-26,1.532515131405834e-16)
    sum e = 1.2669533349319869e-09
    sum de = 1.657151435197849e-10
Info: cfl dt = 0.000874349771243404 cfl multiplier : 0.5803476949921188        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0172e+04 | 11520 |      1 | 2.868e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.984796874131045 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6479255181841446, dt = 0.000874349771243404 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.8%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 303.88 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.111371527777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7282236795994543e-27,-9.971654734733736e-28,2.0855941037049293e-18)
    sum a = (1.3067721776433261e-25,3.7285944813959602e-25,1.6049711437524602e-16)
    sum e = 1.2671013705485876e-09
    sum de = 1.6203686495438948e-10
Info: cfl dt = 0.001083571381236048 cfl multiplier : 0.7202317966614125        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9950e+04 | 11520 |      1 | 2.884e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.915579017808804 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.648799867955388, dt = 0.001083571381236048 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.9%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 288.39 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.111111111111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.744346139445251e-27,5.790216761823831e-28,2.2626717716676408e-18)
    sum a = (-5.9444931001676115e-25,3.034711547198188e-25,1.6970627585636342e-16)
    sum e = 1.267279223414577e-09
    sum de = 1.5777700084774396e-10
Info: cfl dt = 0.0012158443286141396 cfl multiplier : 0.8134878644409417       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9897e+04 | 11520 |      1 | 2.887e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.509675846939755 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6498834393366241, dt = 0.0012158443286141396 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.9%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 304.40 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.110763888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.752077609500441e-28,4.999696150029919e-28,2.4739975648696336e-18)
    sum a = (7.944038709395666e-27,1.6662510242696106e-25,1.8031927244501205e-16)
    sum e = 1.2674721994939328e-09
    sum de = 1.533494318449472e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011715396583084589
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7023930718895217e-27,1.0970207086473414e-27,2.4804494379527568e-18)
    sum a = (2.3750012934821734e-25,2.68998908532539e-25,1.8028701340055334e-16)
    sum e = 1.2674562450834962e-09
    sum de = 1.5364134928431198e-10
Info: cfl dt = 0.0006522325200995361 cfl multiplier : 0.4378292881469806       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6451e+04 | 11520 |      1 | 4.355e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.050032067419602 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6510992836652382, dt = 0.0006522325200995361 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (2.2%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 272.74 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.110590277777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.83788175202931e-28,8.81361138236897e-28,2.5980188945653973e-18)
    sum a = (-3.182941096300878e-25,-4.257716277556685e-25,1.8609694867951643e-16)
    sum e = 1.2675603877073808e-09
    sum de = 1.5132302543081901e-10
Info: cfl dt = 0.0009298456951600791 cfl multiplier : 0.6252195254313203       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7705e+04 | 11520 |      1 | 3.055e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.685115093216878 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6517515161853377, dt = 0.0009298456951600791 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.8%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 315.29 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1104166666666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2086644090849027e-27,1.5519167799954173e-27,2.77295505952119e-18)
    sum a = (-1.1407905867319307e-25,-4.393186546609369e-25,1.9450012218203051e-16)
    sum e = 1.267704748019095e-09
    sum de = 1.4820460622029234e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011121863959257332
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2561649897058527e-27,1.167751500228902e-27,2.7768618880527535e-18)
    sum a = (1.4763041769164627e-25,-2.616207161557958e-26,1.944805883351217e-16)
    sum e = 1.2676949786173815e-09
    sum de = 1.48366885599327e-10
Info: cfl dt = 0.0005578063290623214 cfl multiplier : 0.3750731751437734       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5214e+04 | 11520 |      1 | 4.569e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.32664963548517 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.6526813618804977, dt = 0.0005578063290623214 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (2.1%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 274.94 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1104166666666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0213750731396968e-28,1.0297571127315436e-27,2.885335309392875e-18)
    sum a = (7.020932535342985e-26,-7.74432823904773e-26,1.995858497987788e-16)
    sum e = 1.2677808125535848e-09
    sum de = 1.4655213282263718e-10
Info: cfl dt = 0.0008677626735050368 cfl multiplier : 0.5833821167625156       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0122e+04 | 11520 |      1 | 2.871e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.993873150014042 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6532391682095601, dt = 0.0008677626735050368 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (1.7%)
   patch tree reduce : 1.93 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 347.08 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1100694444444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3737029227752107e-27,1.0450127736608998e-27,3.059952326188306e-18)
    sum a = (-2.767099516931954e-26,6.1894712771277465e-25,2.0761165562840518e-16)
    sum e = 1.2679120805178068e-09
    sum de = 1.4384172000761456e-10
Info: cfl dt = 0.001075910720313854 cfl multiplier : 0.7222547445083437        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7406e+04 | 11520 |      1 | 3.080e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.143467936708102 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6541069308830652, dt = 0.001075910720313854 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.8%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 309.24 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.110763888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.929476487599462e-28,1.5761871496557567e-27,3.2868061811407196e-18)
    sum a = (1.4787450826651598e-25,-2.259723971986893e-25,2.17675412359969e-16)
    sum e = 1.268070281274677e-09
    sum de = 1.4065451779386867e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010499134684132298
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.342072771825232e-28,1.1906349916229362e-27,3.2922200351777132e-18)
    sum a = (1.1960438168615262e-25,-4.761763314662614e-25,2.1764834328541156e-16)
    sum e = 1.268056406420818e-09
    sum de = 1.4084971904659571e-10
Info: cfl dt = 0.0006098008673093105 cfl multiplier : 0.40741824816944794      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.3677e+04 | 11520 |      1 | 4.865e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.960801655800554 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.655182841603379, dt = 0.0006098008673093105 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (1.9%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 319.61 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1109375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.351512870514329e-27,5.700069674513999e-28,3.4249276226641093e-18)
    sum a = (-1.7343744847105175e-25,-9.963333465135905e-26,2.2339665715422817e-16)
    sum e = 1.2681462882135383e-09
    sum de = 1.3906870970260317e-10
Info: cfl dt = 0.000927292931448677 cfl multiplier : 0.604945498779632         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5593e+04 | 11520 |      1 | 3.237e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.782677604358878 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6557926424706884, dt = 0.000927292931448677 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (1.7%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 331.84 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1108506944444443
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3535931879137866e-27,7.828927813292342e-28,3.6338344273207834e-18)
    sum a = (-1.3873220673503269e-25,6.09116934561204e-27,2.321783657834284e-16)
    sum e = 1.2682802164403666e-09
    sum de = 1.3645520364052763e-10
Info: cfl dt = 0.0011343327055060466 cfl multiplier : 0.7366303325197547       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8095e+04 | 11520 |      1 | 3.024e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.03912632796255 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.656719935402137, dt = 0.0011343327055060466 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.7%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 326.78 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.11015625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.061594542862545e-27,1.3882651445714144e-27,3.9012735470191476e-18)
    sum a = (2.497268481439632e-25,1.4828502423334228e-25,2.42953511549951e-16)
    sum e = 1.2684390151626614e-09
    sum de = 1.3338356820325376e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01057295349149236
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.109095123483495e-27,7.9260092919337e-28,3.9073848514406606e-18)
    sum a = (1.9207709237019241e-25,4.504857984612256e-26,2.429229547700838e-16)
    sum e = 1.2684226781622847e-09
    sum de = 1.3357502182069426e-10
Info: cfl dt = 0.0006403710138255363 cfl multiplier : 0.41221011083991826      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6204e+04 | 11520 |      1 | 4.396e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.288617306393586 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.657854268107643, dt = 0.0006403710138255363 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (1.9%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 307.17 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1100694444444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4479009100225341e-27,3.044197794539715e-28,4.062928333369073e-18)
    sum a = (-5.345583589646413e-25,2.4255113999410056e-25,2.4900877970019055e-16)
    sum e = 1.2685129487730493e-09
    sum de = 1.3183947479069057e-10
Info: cfl dt = 0.0009496076832711181 cfl multiplier : 0.6081400738932788       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9579e+04 | 11520 |      1 | 2.911e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.920420365599517 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6584946391214686, dt = 0.0009496076832711181 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.8%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 326.33 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1105034722222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.085232243383748e-27,8.494629381118795e-28,4.301337582412643e-18)
    sum a = (3.5326563199323744e-26,1.0488128201105758e-25,2.580128329370775e-16)
    sum e = 1.268643501305598e-09
    sum de = 1.293277332954265e-10
Info: cfl dt = 0.0011639165982688152 cfl multiplier : 0.7387600492621859       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7684e+04 | 11520 |      1 | 3.057e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.182882991387656 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6594442468047397, dt = 0.0011639165982688152 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (1.8%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 1.43 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.4%)
   LB compute        : 335.25 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (55.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.11015625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3161474747235487e-27,8.543170120439474e-28,4.605918156133389e-18)
    sum a = (1.8728404108184197e-25,-1.4336992765755697e-25,2.6898212476377935e-16)
    sum e = 1.2687985887025163e-09
    sum de = 1.263069949133043e-10
Info: cfl dt = 0.0013062829014408503 cfl multiplier : 0.8258400328414573       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7263e+04 | 11520 |      1 | 3.092e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.553483307091959 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6606081634030085, dt = 0.0013062829014408503 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.8%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 311.72 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.108420138888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.39797329243555e-27,-4.930352236714663e-28,4.963668573433764e-18)
    sum a = (-1.6407324641695965e-25,-1.7080792727813726e-25,2.811609937460036e-16)
    sum e = 1.2689665943470094e-09
    sum de = 1.2295319185397275e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012401011517078087
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7752041808705397e-27,-1.3938126576366348e-28,4.971623094723848e-18)
    sum a = (9.621606660318326e-26,-6.767411188262411e-26,2.811212210035725e-16)
    sum e = 1.2689435173326684e-09
    sum de = 1.2316199744719558e-10
Info: cfl dt = 0.0007004050983732028 cfl multiplier : 0.44194667761381917      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6298e+04 | 11520 |      1 | 4.381e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.735276255604433 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6619144463044494, dt = 0.0007004050983732028 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.7%)
   patch tree reduce : 2.32 us    (0.7%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 318.29 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.108333333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2793952006664634e-27,1.789072963533591e-28,5.168495867992344e-18)
    sum a = (3.474962184054082e-26,-1.9976594547858793e-25,2.8758009831526976e-16)
    sum e = 1.2690358597377978e-09
    sum de = 1.213071746138926e-10
Info: cfl dt = 0.0009962808077112126 cfl multiplier : 0.6279644517425461       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9865e+04 | 11520 |      1 | 2.890e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.725457464772152 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6626148514028226, dt = 0.0009962808077112126 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    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   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 333.93 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1088541666666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.68879233840151e-28,-8.882955295684225e-28,5.457268312744829e-18)
    sum a = (5.449876835272558e-25,-1.3828840568981506e-25,2.9665154751688233e-16)
    sum e = 1.2691624016275131e-09
    sum de = 1.1868831879229807e-10
Info: cfl dt = 0.0011971180717948165 cfl multiplier : 0.7519763011616973       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6432e+04 | 11520 |      1 | 3.162e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.342640767592442 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6636111322105338, dt = 0.0011971180717948165 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.9%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 278.35 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1088541666666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.542147862137265e-27,7.003735244840801e-29,5.816914094601711e-18)
    sum a = (-3.3418218704887913e-26,-1.7905153169305483e-25,3.0734093336824995e-16)
    sum e = 1.2693088577827595e-09
    sum de = 1.1552143700802038e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011577547736481201
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.137872847509326e-27,-5.852626283807561e-28,5.823312319239284e-18)
    sum a = (-5.0180584182757985e-25,-3.1575334864621685e-25,3.0730894214387545e-16)
    sum e = 1.2692889886708747e-09
    sum de = 1.1567470848972131e-10
Info: cfl dt = 0.0006696715500199301 cfl multiplier : 0.4173254337205658       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4068e+04 | 11520 |      1 | 4.786e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.003841329975248 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6648082502823286, dt = 0.0006696715500199301 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (2.1%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 285.08 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1086805555555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.227083415709941e-28,-1.3008918137941925e-27,6.029089231403714e-18)
    sum a = (-2.989887641631207e-25,8.381182738935037e-26,3.131804504622215e-16)
    sum e = 1.269372134255273e-09
    sum de = 1.1384566598958331e-10
Info: cfl dt = 0.000985825801138323 cfl multiplier : 0.6115502891470439        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7707e+04 | 11520 |      1 | 3.055e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.891098128087105 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6654779218323486, dt = 0.000985825801138323 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.9%)
   patch tree reduce : 1.67 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.5%)
   LB compute        : 282.96 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1084201388888886
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.706553706688437e-27,-6.629278112938423e-28,6.339796587373706e-18)
    sum a = (4.396293153925892e-25,-3.670900345517668e-25,3.216659865253728e-16)
    sum e = 1.2694903496607592e-09
    sum de = 1.1113642827493927e-10
Info: cfl dt = 0.0012046620530198645 cfl multiplier : 0.7410335260980293       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9829e+04 | 11520 |      1 | 2.892e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.270069523139112 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6664637476334869, dt = 0.0012046620530198645 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (1.8%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 321.85 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1078125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5352742407997559e-27,-1.9554983554902042e-28,6.7314780145393096e-18)
    sum a = (1.8124834686688211e-25,2.243192383052536e-25,3.317702349939852e-16)
    sum e = 1.2696289106164737e-09
    sum de = 1.077706314841966e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011475796324864744
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.081704277723969e-27,5.817954327149933e-28,6.7375641305887e-18)
    sum a = (1.384659261079021e-26,-3.2930037555148513e-25,3.31739804455278e-16)
    sum e = 1.2696086972171584e-09
    sum de = 1.0791038838808639e-10
Info: cfl dt = 0.0006824528487793356 cfl multiplier : 0.4136778420326765       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4368e+04 | 11520 |      1 | 4.727e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.173637387620316 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6676684096865068, dt = 0.0006824528487793356 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (1.9%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 313.11 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.107378472222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4215502229627371e-27,-3.786177667012948e-28,6.9639425782281e-18)
    sum a = (-4.0021978257726323e-25,1.6931009875052774e-25,3.3733937174464403e-16)
    sum e = 1.2696882261852367e-09
    sum de = 1.0593757708213212e-10
Info: cfl dt = 0.001013461439839139 cfl multiplier : 0.6091185613551177        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9712e+04 | 11520 |      1 | 2.901e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.469262193547843 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6683508625352861, dt = 0.001013461439839139 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (1.9%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.4%)
   LB compute        : 312.19 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1073784722222224
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5630118061258581e-27,-8.584776468428626e-28,7.307733725737753e-18)
    sum a = (3.857518685031683e-25,-1.3327345387885577e-25,3.454787055058939e-16)
    sum e = 1.2698018333128755e-09
    sum de = 1.029737584694234e-10
Info: cfl dt = 0.0012479702098199786 cfl multiplier : 0.739412374236745        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9669e+04 | 11520 |      1 | 2.904e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.563290581434483 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6693643239751252, dt = 0.0012479702098199786 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.8%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1.40 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 315.98 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1068576388888887
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.654485001707979e-27,-8.584776468428626e-28,7.743005313754683e-18)
    sum a = (4.032376296847431e-25,3.98200487821523e-25,3.552155664938428e-16)
    sum e = 1.2699351921501984e-09
    sum de = 9.924970225753105e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011344747390333447
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.927760790164102e-27,-2.752953358615642e-28,7.74908098254995e-18)
    sum a = (5.140991307801083e-25,2.8321163700563377e-25,3.5518518818874345e-16)
    sum e = 1.2699138221969459e-09
    sum de = 9.939055993797133e-11
Info: cfl dt = 0.0007021223141597487 cfl multiplier : 0.41313745807891494      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4696e+04 | 11520 |      1 | 4.665e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.631327911250036 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6706122941849452, dt = 0.0007021223141597487 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (2.2%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 284.97 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1066840277777774
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4298107225665515e-27,2.4513073356942805e-28,7.998445477436677e-18)
    sum a = (2.9557149611494487e-26,2.0419286090463385e-25,3.605342535530975e-16)
    sum e = 1.2699896827688646e-09
    sum de = 9.722583759529458e-11
Info: cfl dt = 0.001034452235045153 cfl multiplier : 0.6087583053859432        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1669e+04 | 11520 |      1 | 3.638e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.948676660339865 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.671314416499105, dt = 0.001034452235045153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.9%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 1.41 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.5%)
   LB compute        : 296.03 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.30 us    (58.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1062499999999997
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.752892588621626e-27,6.865047418210291e-28,8.373278792679505e-18)
    sum a = (-1.0473704667136185e-26,2.856303527020699e-25,3.682450651930448e-16)
    sum e = 1.2700962908284239e-09
    sum de = 9.400142372409499e-11
Info: cfl dt = 0.0012575843569920993 cfl multiplier : 0.7391722035906287       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1722e+04 | 11520 |      1 | 3.632e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.254678463309208 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6723488687341501, dt = 0.0012575843569920993 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (1.7%)
   patch tree reduce : 18.29 us   (5.1%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 324.62 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1057291666666664
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.883319915648322e-27,2.118803271347631e-27,8.840366255017485e-18)
    sum a = (-9.976647496492435e-26,-3.0098586886660003e-25,3.7736407930068944e-16)
    sum e = 1.270218547234091e-09
    sum de = 9.001317845613658e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011529510126037947
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4464532617622128e-27,1.0592282758905272e-27,8.84610021742278e-18)
    sum a = (-3.0355991492886234e-25,3.5770364244541377e-26,3.773354094464131e-16)
    sum e = 1.2701975828480951e-09
    sum de = 9.015253493046191e-11
Info: cfl dt = 0.0007061680507432477 cfl multiplier : 0.41305740119687623      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5872e+04 | 11520 |      1 | 4.453e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.167754780400745 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6736064530911422, dt = 0.0007061680507432477 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.9%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 294.73 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1056423611111112
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.429749952572535e-27,1.1441745697017152e-27,9.11254440441073e-18)
    sum a = (1.1192662360388753e-25,3.0755412433582103e-25,3.823501143818572e-16)
    sum e = 1.2702671124225837e-09
    sum de = 8.784853852728823e-11
Info: cfl dt = 0.001043495106223506 cfl multiplier : 0.6087049341312508        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9585e+04 | 11520 |      1 | 2.910e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.735496127137619 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6743126211418854, dt = 0.001043495106223506 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (1.9%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 302.68 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.105295138888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.48799883975735e-27,1.4631565709518904e-27,9.51329548127903e-18)
    sum a = (-1.5834821293365215e-25,-1.9873410804845694e-25,3.896257011669252e-16)
    sum e = 1.2703644853832871e-09
    sum de = 8.441686609937103e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011719963889559242
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0636140902679864e-27,-1.039118541029103e-27,9.517091496772572e-18)
    sum a = (2.709849182098879e-25,-3.7004131150246402e-25,3.896067207122266e-16)
    sum e = 1.2703504700567569e-09
    sum de = 8.451317875575743e-11
Info: cfl dt = 0.0006376086059737433 cfl multiplier : 0.3695683113770836       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5989e+04 | 11520 |      1 | 4.433e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.4746969482563 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 0.6753561162481089, dt = 0.0006376086059737433 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.84 us    (1.9%)
   patch tree reduce : 1.91 us    (0.5%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 315.72 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 21.30 us   (6.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1056423611111112
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.861069093393424e-27,3.3597126001241274e-28,9.76549819258118e-18)
    sum a = (-1.855088369009714e-26,3.8752707268403885e-25,3.9398472207138237e-16)
    sum e = 1.2704089341076283e-09
    sum de = 8.23834288759234e-11
Info: cfl dt = 0.0010042462740974256 cfl multiplier : 0.5797122075847224       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9384e+04 | 11520 |      1 | 2.925e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.847348048683723 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6759937248540826, dt = 0.0010042462740974256 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.8%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 1.42 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.4%)
   LB compute        : 310.76 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1049479166666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.529605187746503e-27,4.885278693059747e-28,1.0162551610386222e-17)
    sum a = (-1.7645529557853166e-25,-2.906896846175509e-25,4.0078531679777713e-16)
    sum e = 1.2704974033248362e-09
    sum de = 7.900240640535195e-11
Info: cfl dt = 0.0012565937487801083 cfl multiplier : 0.719808138389815        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8104e+04 | 11520 |      1 | 3.023e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.957930324042994 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.67699797112818, dt = 0.0012565937487801083 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (2.0%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 941.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 311.36 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1043402777777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.543473970409554e-27,4.046217341945156e-28,1.0669590666443921e-17)
    sum a = (1.7325992805296468e-25,5.2071176635385115e-25,4.0915436397110066e-16)
    sum e = 1.2706006539760177e-09
    sum de = 7.473891881230855e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011355129556319545
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.171790595039785e-27,1.551570060428841e-28,1.0674848920461574e-17)
    sum a = (1.1822859844597795e-25,5.824001116391024e-25,4.0912807287054444e-16)
    sum e = 1.2705813824504873e-09
    sum de = 7.488087620975158e-11
Info: cfl dt = 0.0007189806040960778 cfl multiplier : 0.40660271279660504      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5125e+04 | 11520 |      1 | 4.585e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.866324861132775 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6782545648769601, dt = 0.0007189806040960778 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.6%)
   patch tree reduce : 1.90 us    (0.5%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 337.02 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.103732638888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.188433134235446e-27,1.010167457219984e-27,1.0968987537799315e-17)
    sum a = (2.8589663332920043e-25,1.411287323792079e-25,4.1386758302656776e-16)
    sum e = 1.2706406969302797e-09
    sum de = 7.239853420615893e-11
Info: cfl dt = 0.001077746495999544 cfl multiplier : 0.60440180853107          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8975e+04 | 11520 |      1 | 2.956e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.75698440616187 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.6789735454810562, dt = 0.001077746495999544 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.83 us    (2.3%)
   patch tree reduce : 1.70 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.5%)
   LB compute        : 270.47 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.103732638888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.304870138611059e-27,7.766518291308612e-28,1.1416735698387235e-17)
    sum a = (-8.114458310759238e-25,1.3238585178842052e-25,4.209146523759212e-16)
    sum e = 1.2707241540109496e-09
    sum de = 6.867438178073917e-11
Info: cfl dt = 0.001322416808217891 cfl multiplier : 0.7362678723540466        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4850e+04 | 11520 |      1 | 3.306e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.73734833933454 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6800512919770557, dt = 0.001322416808217891 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (2.2%)
   patch tree reduce : 1.70 us    (0.6%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.5%)
   LB compute        : 259.32 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.103645833333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8168105288596933e-27,9.035728604706898e-28,1.1977157781584564e-17)
    sum a = (-1.9633758240428171e-25,-1.113496822451046e-25,4.295038070503034e-16)
    sum e = 1.2708182806216984e-09
    sum de = 6.410162742413521e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012970668934689972
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.094186182120715e-27,2.2675784703682203e-27,1.1982836997136724e-17)
    sum a = (-1.4743070722129833e-25,-3.910774810457799e-25,4.2947541115405727e-16)
    sum e = 1.2707982927506628e-09
    sum de = 6.42631695109378e-11
Info: cfl dt = 0.0007486153632991103 cfl multiplier : 0.4120892907846822       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5775e+04 | 11520 |      1 | 4.469e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.651821388510507 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6813737087852736, dt = 0.0007486153632991103 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.0%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.5%)
   LB compute        : 298.53 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.103125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3271817308599734e-27,1.760381919399404e-27,1.2304330119585404e-17)
    sum a = (5.52443541086912e-25,2.467090010364833e-25,4.343379899956249e-16)
    sum e = 1.2708518973111082e-09
    sum de = 6.164155395917955e-11
Info: cfl dt = 0.0011117517621161775 cfl multiplier : 0.6080595271897882       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5916e+04 | 11520 |      1 | 3.207e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.402266705669165 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6821223241485727, dt = 0.0011117517621161775 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.8%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 309.67 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1032118055555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.856969228588525e-27,1.607911989997486e-27,1.2789026243153205e-17)
    sum a = (-5.867049817777135e-26,3.4683051683758175e-25,4.4156860289451545e-16)
    sum e = 1.2709255508672487e-09
    sum de = 5.7768342069755654e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010538557815984768
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.374335591914347e-27,1.5996774002912995e-27,1.2793045566107431e-17)
    sum a = (-1.7388124951626938e-25,2.614875758422305e-25,4.41548506305041e-16)
    sum e = 1.270911999142871e-09
    sum de = 5.7884141972079887e-11
Info: cfl dt = 0.0006826147873498008 cfl multiplier : 0.3693531757299294       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4412e+04 | 11520 |      1 | 4.719e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.481446046852408 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6832340759106889, dt = 0.0006826147873498008 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (1.7%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 352.28 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1028645833333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5629510361318418e-27,1.3109466812249045e-27,1.3094441929194606e-17)
    sum a = (1.3935352819833738e-26,-5.22797631266374e-26,4.46010901024333e-16)
    sum e = 1.2709558317971222e-09
    sum de = 5.5499522697922376e-11
Info: cfl dt = 0.0010782917091187595 cfl multiplier : 0.5795687838199529       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9132e+04 | 11520 |      1 | 2.944e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.347486633883316 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6839166906980386, dt = 0.0010782917091187595 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (1.9%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 311.68 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1023437499999997
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.6003359793280635e-27,1.9757814501349162e-27,1.3576894837745502e-17)
    sum a = (-1.7352620868009527e-25,-2.933968709933785e-25,4.531055979884511e-16)
    sum e = 1.2710209361833618e-09
    sum de = 5.174951117291947e-11
Info: cfl dt = 0.0013445641018318306 cfl multiplier : 0.7197125225466353       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4291e+04 | 11520 |      1 | 3.359e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.555002386154065 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6849949824071574, dt = 0.0013445641018318306 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (1.8%)
   patch tree reduce : 1.90 us    (0.5%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 335.03 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.102430555555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.402073157240449e-27,2.0771969233584776e-27,1.4189949437200014e-17)
    sum a = (1.5834821293365215e-25,3.3884209802366428e-25,4.62062306683212e-16)
    sum e = 1.2710937694691054e-09
    sum de = 4.711851493396136e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.014500280343444947
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.134344881849547e-27,3.6925633840373535e-28,1.4195970869335823e-17)
    sum a = (7.358221329708388e-26,2.8944704169094154e-25,4.620322000752427e-16)
    sum e = 1.2710751053435518e-09
    sum de = 4.728962377838609e-11
Info: cfl dt = 0.0007539341014491163 cfl multiplier : 0.4065708408488784       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4626e+04 | 11520 |      1 | 4.678e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.347121812140074 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6863395465089892, dt = 0.0007539341014491163 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (1.8%)
   patch tree reduce : 1.94 us    (0.5%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (0.4%)
   LB compute        : 343.92 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.47 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1019965277777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1413400431750887e-27,2.5986631514891985e-27,1.454429246555224e-17)
    sum a = (4.1095976787153e-26,3.7692022770333736e-25,4.671372224259975e-16)
    sum e = 1.27111571892884e-09
    sum de = 4.4680631707916087e-11
Info: cfl dt = 0.0011164500020887475 cfl multiplier : 0.6043805605659189       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7222e+04 | 11520 |      1 | 3.095e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.769687799053804 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6870934806104383, dt = 0.0011164500020887475 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.8%)
   patch tree reduce : 2.26 us    (0.7%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 320.16 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1014756944444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1496613127729195e-27,2.5875681253587576e-27,1.506775223981214e-17)
    sum a = (2.495937078303979e-25,-1.3207519105676816e-25,4.748142796548117e-16)
    sum e = 1.2711701347281417e-09
    sum de = 4.086228652381658e-11
Info: cfl dt = 0.0013543672346848477 cfl multiplier : 0.736253707043946        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6442e+04 | 11520 |      1 | 3.161e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.714190054037415 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.688209930612527, dt = 0.0013543672346848477 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (2.1%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 270.84 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.100347222222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4187156964361107e-27,1.2783550419667345e-27,1.571511066686272e-17)
    sum a = (-1.0376068437188306e-25,3.147880813728685e-25,4.843514638814097e-16)
    sum e = 1.2712278679947148e-09
    sum de = 3.629484367798209e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.013481668581840165
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9124443592407295e-27,3.404786143779043e-27,1.572156909852645e-17)
    sum a = (1.736149688891388e-25,8.334583629187185e-26,4.843191714403898e-16)
    sum e = 1.2712099696129753e-09
    sum de = 3.646775962192012e-11
Info: cfl dt = 0.0007569720039597839 cfl multiplier : 0.4120845690146487       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5756e+04 | 11520 |      1 | 4.473e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.901114522444518 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6895642978472118, dt = 0.0007569720039597839 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (1.9%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 315.10 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1000868055555557
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.395077995914908e-27,3.5802262444666395e-27,1.608816328491038e-17)
    sum a = (1.7503513223383524e-25,1.849318955421885e-25,4.897828521923647e-16)
    sum e = 1.2712422745927866e-09
    sum de = 3.390667872969447e-11
Info: cfl dt = 0.0011163780668732087 cfl multiplier : 0.6080563793430991       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9395e+04 | 11520 |      1 | 2.924e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.31904460028534 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.6903212698511716, dt = 0.0011163780668732087 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.1%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 298.95 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (71.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.099826388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4908333662839764e-27,2.0685289341940706e-27,1.663701403729854e-17)
    sum a = (2.84476469984504e-25,-3.5641661941428264e-25,4.980168331430483e-16)
    sum e = 1.271284346349989e-09
    sum de = 3.0183945692681674e-11
Info: cfl dt = 0.0013575874856496758 cfl multiplier : 0.7387042528953994       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9308e+04 | 11520 |      1 | 2.931e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.713152980785887 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6914376479180449, dt = 0.0013575874856496758 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (1.7%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 341.95 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.03 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.0996527777777776
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.414494291643179e-27,1.7897664026667436e-27,1.7317711586701485e-17)
    sum a = (-2.4994874866657203e-25,-2.444899958103951e-25,5.083366154141805e-16)
    sum e = 1.2713276451302908e-09
    sum de = 2.573255260981943e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.013058831857803196
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5962361145231646e-27,1.2024234568865297e-27,1.7324716579323446e-17)
    sum a = (-9.967771475588081e-26,-4.567156556334681e-25,5.083015902607688e-16)
    sum e = 1.2713105232938527e-09
    sum de = 2.5904838339699015e-11
Info: cfl dt = 0.0007627764013113599 cfl multiplier : 0.4129014176317998       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5121e+04 | 11520 |      1 | 4.586e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.657364894220208 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6927952354036945, dt = 0.0007627764013113599 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.8%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 312.61 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.0999131944444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6781227022291823e-27,7.392061159406232e-28,1.7712413258210293e-17)
    sum a = (-4.287118096802354e-26,-3.949829302436951e-27,5.142682612793217e-16)
    sum e = 1.2713348098262024e-09
    sum de = 2.3401007547148682e-11
Info: cfl dt = 0.0011278651214819643 cfl multiplier : 0.6086009450878666       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2444e+04 | 11520 |      1 | 3.551e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.733677020665722 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6935580118050059, dt = 0.0011278651214819643 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (1.9%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 324.49 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.099392361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4797383401535352e-27,2.2675459654088535e-27,1.8294714121734052e-17)
    sum a = (1.713072034540071e-26,6.03125620450766e-26,5.233098952507188e-16)
    sum e = 1.2713653276677285e-09
    sum de = 1.975908544311684e-11
Info: cfl dt = 0.0014316432574516566 cfl multiplier : 0.7390672967252444       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7125e+04 | 11520 |      1 | 3.103e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.085098325916046 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6946858769264879, dt = 0.0014316432574516566 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.9%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 305.74 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.0987847222222227
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0760959946647322e-27,9.819098125440174e-28,1.9049006067438475e-17)
    sum a = (-3.0799792538103866e-25,2.538541978644872e-26,5.351890608340638e-16)
    sum e = 1.271397118975543e-09
    sum de = 1.5213643909503903e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.0142284616630614
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7737565326102185e-27,1.743999419878675e-27,1.905750943455209e-17)
    sum a = (-1.2373173140667663e-25,-2.410727277622193e-25,5.351465443218492e-16)
    sum e = 1.2713788934237198e-09
    sum de = 1.540288919929495e-11
Info: cfl dt = 0.0007704956407719123 cfl multiplier : 0.4130224322417481       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4802e+04 | 11520 |      1 | 4.645e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.096344985318263 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6961175201839396, dt = 0.0007704956407719123 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (1.8%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 1.40 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 316.49 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.098611111111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.551856010001401e-27,1.9638196250880348e-27,1.9469807080927184e-17)
    sum a = (-1.952724598957594e-26,1.9114511017523539e-25,5.417495653158999e-16)
    sum e = 1.2713951895181152e-09
    sum de = 1.2964815775865601e-11
Info: cfl dt = 0.0011319734194206966 cfl multiplier : 0.6086816214944988       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9258e+04 | 11520 |      1 | 2.934e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.45264482967795 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.6968880158247115, dt = 0.0011319734194206966 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.2%)
   patch tree reduce : 1.97 us    (0.4%)
   gen split merge   : 1.05 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.3%)
   LB compute        : 503.38 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 17.81 us   (95.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.098263888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9512769506972724e-27,1.592829688851418e-27,2.00855969825301e-17)
    sum a = (5.341589380239454e-25,-6.869374478401163e-25,5.517192574885631e-16)
    sum e = 1.2714137910066103e-09
    sum de = 9.449037308746175e-12
Info: cfl dt = 0.0013699469161044327 cfl multiplier : 0.7391210809963326       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8956e+04 | 11520 |      1 | 2.957e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.780459984154561 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6980199892441322, dt = 0.0013699469161044327 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (2.1%)
   patch tree reduce : 1.68 us    (0.6%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.5%)
   LB compute        : 266.86 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (63.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.0979166666666664
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.2660375471545165e-27,2.47557770535462e-28,2.0847065803581134e-17)
    sum a = (-2.318416660216925e-25,-6.974333425595134e-26,5.642435745040541e-16)
    sum e = 1.2714288484220013e-09
    sum de = 5.283501017139594e-12
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012380925669021948
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.289675247675719e-27,-7.579289725357422e-28,2.08556446182926e-17)
    sum a = (-3.337383860036615e-26,-9.572788545344386e-26,5.642006799244749e-16)
    sum e = 1.2714127992843243e-09
    sum de = 5.452640775818074e-12
Info: cfl dt = 0.0007640397422634912 cfl multiplier : 0.4130403603321109       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5314e+04 | 11520 |      1 | 4.551e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.837174238253661 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6993899361602367, dt = 0.000610063839763364 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.9%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.5%)
   LB compute        : 285.69 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.0979166666666664
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.476843043632893e-27,9.26434681891813e-28,2.1199813673753565e-17)
    sum a = (4.180605845950122e-25,4.390856591121976e-25,5.69955363578093e-16)
    sum e = 1.2714188337982784e-09
    sum de = 3.604969279053135e-12
Info: cfl dt = 0.0011251316632173998 cfl multiplier : 0.6086935735547406       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9271e+04 | 11520 |      1 | 2.933e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.486879978878401 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 278                                                     [SPH][rank=0]
Info: time since start : 116.564913778 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[0. 0. 0. ... 0. 0. 0.]
(11520, 3)
[[0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 ...
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]]
compute original rho
Info: Dumping state to _to_trash/dusty_settle/dump/0000007.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.84 us   (72.1%)
Info: dump to _to_trash/dusty_settle/dump/0000007.sham                      [Shamrock Dump][rank=0]
              - took 1.25 ms, bandwidth = 2.37 GB/s
Info: evolve_until (target_time = 0.80s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.7000000000000001, dt = 0.0011251316632173998 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.34 us    (0.9%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.3%)
   LB compute        : 346.73 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.097048611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.471295530567672e-27,1.7800582548026078e-27,2.184284386223274e-17)
    sum a = (-6.2487187166643e-25,-7.522427716438913e-27,5.808642375433184e-16)
    sum e = 1.2714285018102345e-09
    sum de = 2.2397286728321707e-13
Info: cfl dt = 0.001365887635132972 cfl multiplier : 0.7391290490364938        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5473e+04 | 11520 |      1 | 3.248e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.472467709311633 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7011251316632174, dt = 0.001365887635132972 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (1.7%)
   patch tree reduce : 1.88 us    (0.5%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 344.52 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.0968750000000003
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2800278698055997e-27,7.329651637422503e-28,2.264237609798533e-17)
    sum a = (-2.5030378950274613e-26,-2.031499284483724e-26,5.946257276694901e-16)
    sum e = 1.2714309758171702e-09
    sum de = -3.769437184878738e-12
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012606216227586158
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.406173022045349e-27,-7.905206117939123e-29,2.2651774435840037e-17)
    sum a = (4.5462979072094525e-25,-1.2957881017741897e-25,5.94578736097602e-16)
    sum e = 1.271415469839594e-09
    sum de = -3.6055699722759573e-12
Info: cfl dt = 0.0007656758693258249 cfl multiplier : 0.4130430163454979       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5002e+04 | 11520 |      1 | 4.608e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.671976270875657 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7024910192983504, dt = 0.0007656758693258249 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (2.0%)
   patch tree reduce : 1.75 us    (0.6%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 275.41 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.096440972222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.132897233589226e-27,9.125658992287619e-28,2.310699692392199e-17)
    sum a = (2.078764095799402e-25,-1.4579973838012354e-25,6.025649235224689e-16)
    sum e = 1.271416799888594e-09
    sum de = -5.842174532851415e-12
Info: cfl dt = 0.0011305390457054657 cfl multiplier : 0.6086953442303319       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8763e+04 | 11520 |      1 | 2.972e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.275073458826027 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7032566951676763, dt = 0.0011305390457054657 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.8%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 289.75 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.09609375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.972019354697833e-27,1.9346951814956274e-28,2.379127752099017e-17)
    sum a = (2.1675243048429293e-25,1.2395363192928544e-25,6.147076738936739e-16)
    sum e = 1.271414023101858e-09
    sum de = -9.083972254413664e-12
Info: cfl dt = 0.0013786472335540953 cfl multiplier : 0.7391302294868879       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8784e+04 | 11520 |      1 | 2.970e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.70217267428407 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7043872342133818, dt = 0.0013786472335540953 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (2.1%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.5%)
   LB compute        : 277.19 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 us    (62.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.0953993055555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.6099833571981834e-27,1.524179214669315e-27,2.4645606479448172e-17)
    sum a = (-4.942168439543583e-25,6.666779301259312e-25,6.300922438365986e-16)
    sum e = 1.2714038728127254e-09
    sum de = -1.2955921871555842e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01445332984939593
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.8277840150021014e-27,1.30019837466104e-27,2.4656211424383457e-17)
    sum a = (1.6527150923904726e-25,2.3299554873925837e-25,6.30039219365377e-16)
    sum e = 1.2713883945254038e-09
    sum de = -1.279485586462483e-11
Info: cfl dt = 0.0007627234110590446 cfl multiplier : 0.41304340982896265      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5489e+04 | 11520 |      1 | 4.520e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.981344352582287 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7057658814469359, dt = 0.0007627234110590446 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (2.0%)
   patch tree reduce : 1.69 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 270.98 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.0948784722222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.033041998415258e-27,1.3022786920604977e-27,2.513672052150245e-17)
    sum a = (-1.0438200583518775e-25,-5.1791581976898e-26,6.388318993358417e-16)
    sum e = 1.2713826307728141e-09
    sum de = -1.4936175088168585e-11
Info: cfl dt = 0.0011171102658779448 cfl multiplier : 0.6086956065526418       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9097e+04 | 11520 |      1 | 2.946e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.318870342669276 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.706528604857995, dt = 0.0011171102658779448 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.8%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 310.23 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.0945312499999997
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.116254694393564e-27,1.3161474747235487e-27,2.5853719399075473e-17)
    sum a = (7.624501956838969e-26,3.1900419130243602e-25,6.52055608476908e-16)
    sum e = 1.2713696058904429e-09
    sum de = -1.8017660044037602e-11
Info: cfl dt = 0.0013458237108782767 cfl multiplier : 0.7391304043684279       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8637e+04 | 11520 |      1 | 2.982e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.488120015248942 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7076457151238729, dt = 0.0013458237108782767 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.2%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.69 us    (0.6%)
   LB compute        : 274.47 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.094618055555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.587793304937302e-27,2.829231663262423e-27,2.6738657468644738e-17)
    sum a = (-1.4911715119312536e-26,1.045595262532748e-25,6.685329328448896e-16)
    sum e = 1.271347440363017e-09
    sum de = -2.1659495171783517e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.013528925098689068
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.2216574426327525e-27,2.963065415960866e-27,2.6749745261395082e-17)
    sum a = (1.620761417134803e-25,2.9876686364051185e-25,6.684774934938327e-16)
    sum e = 1.2713328700919554e-09
    sum de = -2.1512173860602815e-11
Info: cfl dt = 0.0007471283961227933 cfl multiplier : 0.4130434681228093       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5515e+04 | 11520 |      1 | 4.515e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.730881486559522 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7089915388347512, dt = 0.0007471283961227933 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (2.1%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 272.10 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.094618055555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.949829302436951e-27,2.1711579259006484e-27,2.7249146469710623e-17)
    sum a = (-4.7664232256373997e-26,4.446886473080703e-25,6.778970623059122e-16)
    sum e = 1.2713205998091859e-09
    sum de = -2.353792481047164e-11
Info: cfl dt = 0.0010972260068801188 cfl multiplier : 0.6086956454152062       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5526e+04 | 11520 |      1 | 3.243e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.294578859925027 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.709738667230874, dt = 0.0010972260068801188 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (1.9%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 318.23 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.0946180555555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.6599109747851675e-27,3.065347688100868e-27,2.799647157330671e-17)
    sum a = (6.532751385603587e-26,-4.216997531657968e-25,6.920659242027103e-16)
    sum e = 1.2712983365422339e-09
    sum de = -2.6467880874001695e-11
Info: cfl dt = 0.001327442341795685 cfl multiplier : 0.7391304302768041        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8627e+04 | 11520 |      1 | 2.982e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.244633661850061 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7108358932377541, dt = 0.001327442341795685 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (1.9%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 300.31 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.094704861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.654363461719947e-27,2.2550640610121077e-27,2.892292239681948e-17)
    sum a = (2.6086625437892585e-25,2.4231537068882868e-26,7.097417890489151e-16)
    sum e = 1.2712653398134088e-09
    sum de = -2.995576601125977e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010575118620117414
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.521223148154656e-27,2.8167497588656768e-27,2.8934654250755174e-17)
    sum a = (-9.967771475588081e-26,1.9882286825750048e-26,7.096831300625815e-16)
    sum e = 1.271251292727922e-09
    sum de = -2.981852851395111e-11
Info: cfl dt = 0.0007410773540559676 cfl multiplier : 0.41304347675893477      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5350e+04 | 11520 |      1 | 4.544e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.515889847565997 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7121633355795498, dt = 0.0007410773540559676 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (1.9%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 298.53 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (62.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.094704861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.643268435589506e-27,2.2422354370487853e-27,2.9460545406571443e-17)
    sum a = (7.099041519301289e-25,-7.446981538751915e-26,7.198157519490946e-16)
    sum e = 1.271232913019099e-09
    sum de = -3.177278574664161e-11
Info: cfl dt = 0.0010916840192736336 cfl multiplier : 0.6086956511726233       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8855e+04 | 11520 |      1 | 2.965e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.998210885320175 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7129044129336057, dt = 0.0010916840192736336 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (2.0%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 283.62 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.09453125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.342255081807281e-27,2.097740057678122e-27,3.0250111292609474e-17)
    sum a = (3.5592843826454323e-26,-2.4870610573996264e-25,7.350651247189577e-16)
    sum e = 1.2712017611757885e-09
    sum de = -3.461411990897175e-11
Info: cfl dt = 0.0013269159847107328 cfl multiplier : 0.7391304341150823       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4291e+04 | 11520 |      1 | 3.359e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.698526992478506 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7139960969528794, dt = 0.0013269159847107328 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (2.2%)
   patch tree reduce : 1.92 us    (0.7%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 261.35 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.094357638888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.282680086350177e-27,2.1709412261715385e-27,3.123380470105737e-17)
    sum a = (-2.7178376009127967e-25,-2.4852858532187557e-26,7.54109951485281e-16)
    sum e = 1.2711580283001005e-09
    sum de = -3.8020894602412434e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010331098973095094
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.891458875264104e-27,2.6752881757025557e-27,3.1246440147568015e-17)
    sum a = (1.634075448491332e-25,8.02392289753484e-26,7.540467743770808e-16)
    sum e = 1.2711441663646175e-09
    sum de = -3.7889125176978417e-11
Info: cfl dt = 0.0007451971201298554 cfl multiplier : 0.4130434780383608       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5418e+04 | 11520 |      1 | 4.532e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.539768650974356 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.71532301293759, dt = 0.0007451971201298554 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (2.1%)
   patch tree reduce : 1.76 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 267.59 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.0945312499999997
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.787503775285237e-27,1.7758976200036924e-27,3.180831171664423e-17)
    sum a = (3.2397476300887355e-26,-1.2532941516946012e-25,7.649950266428892e-16)
    sum e = 1.2711196495578932e-09
    sum de = -3.981125425824457e-11
Info: cfl dt = 0.0011013757634286225 cfl multiplier : 0.6086956520255739       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8789e+04 | 11520 |      1 | 2.970e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.033059557560664 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7160682100577199, dt = 0.0011013757634286225 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (2.0%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 278.01 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.094704861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.664010839590066e-27,2.034203697103019e-27,3.265493799694777e-17)
    sum a = (-3.8433170515847187e-25,9.532846451274799e-26,7.814840902202542e-16)
    sum e = 1.2710793605265058e-09
    sum de = -4.261880090780791e-11
Info: cfl dt = 0.0013453224228076098 cfl multiplier : 0.739130434683716        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5029e+04 | 11520 |      1 | 3.289e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.05616541005224 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7171695858211485, dt = 0.0013453224228076098 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.9%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1.07 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 268.92 us  (88.1%)
   LB move op cnt    : 0
   LB apply          : 19.73 us   (6.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.09453125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.7264811315678125e-27,2.162836656302818e-27,3.371536639556399e-17)
    sum a = (2.290900995413432e-25,-3.028498332565141e-25,8.021141765696335e-16)
    sum e = 1.2710242889191443e-09
    sum de = -4.6005404297153876e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010289439519601236
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.508680473763894e-27,2.3597733701181435e-27,3.372924345594866e-17)
    sum a = (3.6786668638089764e-25,2.1391210379490004e-25,8.020447912031704e-16)
    sum e = 1.2710103273622755e-09
    sum de = -4.587380104335248e-11
Info: cfl dt = 0.0007601558714484767 cfl multiplier : 0.4130434782279053       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5375e+04 | 11520 |      1 | 4.540e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.66800270234338 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7185149082439561, dt = 0.0007601558714484767 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.0%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.54 us    (0.5%)
   LB compute        : 306.21 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (62.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.0941840277777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.09671685867726e-27,2.469336753156247e-27,3.433887584300084e-17)
    sum a = (-7.158510859360452e-25,-7.074188660769102e-25,8.139468358906699e-16)
    sum e = 1.2709792451346693e-09
    sum de = -4.77961675177553e-11
Info: cfl dt = 0.0011273729684022971 cfl multiplier : 0.6086956521519369       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8718e+04 | 11520 |      1 | 2.975e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.197322934086747 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7192750641154046, dt = 0.0011273729684022971 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (1.5%)
   patch tree reduce : 1.64 us    (0.4%)
   gen split merge   : 981.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.3%)
   LB compute        : 390.41 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (63.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.0944444444444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.082969616002242e-27,2.058127347196782e-27,3.526102120532077e-17)
    sum a = (1.0924162728032085e-25,-4.615530870263404e-26,8.318933169494367e-16)
    sum e = 1.2709289953204775e-09
    sum de = -5.0613897486323226e-11
Info: cfl dt = 0.0013841259486896092 cfl multiplier : 0.7391304347679579       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8285e+04 | 11520 |      1 | 3.009e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.487819690568873 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7204024370838069, dt = 0.0013841259486896092 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (1.9%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.4%)
   LB compute        : 322.11 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.094097222222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.523875364699235e-27,1.6822833370280977e-27,3.6422582518357655e-17)
    sum a = (-2.1623200441486192e-25,1.952724598957594e-26,8.543869304431589e-16)
    sum e = 1.2708612929670036e-09
    sum de = -5.4028328745771304e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011008624211779833
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.909549062720087e-27,1.661480163033521e-27,3.643814951877076e-17)
    sum a = (-3.272163309166868e-25,-3.55218356592195e-25,8.543090950934335e-16)
    sum e = 1.2708469594717899e-09
    sum de = -5.389198868888864e-11
Info: cfl dt = 0.0008143740924860493 cfl multiplier : 0.413043478255986        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4543e+04 | 11520 |      1 | 4.694e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.615728773914755 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7217865630324966, dt = 0.0008143740924860493 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.9%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 298.13 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.093923611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.94838165417663e-27,1.8570299985825412e-27,3.713382284392131e-17)
    sum a = (2.712844839154098e-25,-2.6681318838484214e-25,8.677834631528889e-16)
    sum e = 1.2708072727985521e-09
    sum de = -5.5909708934808355e-11
Info: cfl dt = 0.0011999928945632824 cfl multiplier : 0.6086956521706574       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7838e+04 | 11520 |      1 | 3.045e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.62946399711026 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.7226009371249826, dt = 0.0011999928945632824 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 24.52 us   (7.1%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 305.47 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.0941840277777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.780508613959696e-27,1.980462164283696e-27,3.818064342209807e-17)
    sum a = (6.0769677121650755e-25,-5.913205126479768e-25,8.879199178962669e-16)
    sum e = 1.27074404376278e-09
    sum de = -5.884229732007238e-11
Info: cfl dt = 0.0014582719337772477 cfl multiplier : 0.7391304347804383       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7998e+04 | 11520 |      1 | 3.032e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.249104915661954 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7238009300195459, dt = 0.0014582719337772477 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.94 us    (2.1%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 312.14 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (60.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.093923611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.817893557155917e-27,4.465748017502452e-28,3.948755391547136e-17)
    sum a = (-3.424812665944489e-25,3.557509178464562e-25,9.128167638152066e-16)
    sum e = 1.2706604504529703e-09
    sum de = -6.234912678111948e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011729909375142539
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.198019742111549e-27,5.727807239840101e-28,3.950570710832366e-17)
    sum a = (-4.616418472353839e-25,-1.3509303816424808e-25,9.127259977901776e-16)
    sum e = 1.2706451782174467e-09
    sum de = -6.220041537435574e-11
Info: cfl dt = 0.0008174251371631733 cfl multiplier : 0.41304347826014604      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.2561e+04 | 11520 |      1 | 5.106e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.281139574941134 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7252592019533232, dt = 0.0008174251371631733 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 14.87 us   (4.5%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 303.10 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.094097222222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.508680473763894e-27,-1.1261451522397488e-27,4.0251726094981065e-17)
    sum a = (2.3796612044569586e-25,-3.3870895771009903e-25,9.26890204297801e-16)
    sum e = 1.270598400047384e-09
    sum de = -6.417126106956287e-11
Info: cfl dt = 0.0012068551481678612 cfl multiplier : 0.6086956521734307       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8492e+04 | 11520 |      1 | 2.993e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.832525244772608 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7260766270904864, dt = 0.0012068551481678612 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.8%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.61 us    (0.5%)
   LB compute        : 319.76 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.094097222222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.8415312576771206e-27,-9.097921426961517e-28,4.1376137400260217e-17)
    sum a = (-1.489396307750383e-25,2.7941713806902297e-25,9.480330760331358e-16)
    sum e = 1.2705246747951666e-09
    sum de = -6.703659682869922e-11
Info: cfl dt = 0.001470817294512546 cfl multiplier : 0.7391304347822872        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8096e+04 | 11520 |      1 | 3.024e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.36762365825501 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7272834822386542, dt = 0.001470817294512546 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.0%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 304.10 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.093923611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.8082461792857974e-27,-8.127106640547941e-28,4.2783279031113687e-17)
    sum a = (4.1264621184335697e-25,-1.9349725571488884e-25,9.74151646346952e-16)
    sum e = 1.270428237924894e-09
    sum de = -7.046546878464654e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012226039892547757
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.801251017960256e-27,-5.908101414459766e-28,4.280248685785812e-17)
    sum a = (1.7228356575348589e-25,-3.7918361303394734e-25,9.74055607462768e-16)
    sum e = 1.2704133988661891e-09
    sum de = -7.031706376175631e-11
Info: cfl dt = 0.0008369009957863889 cfl multiplier : 0.41304347826076243      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5253e+04 | 11520 |      1 | 4.562e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.606940881319273 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7287542995331668, dt = 0.0008369009957863889 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (1.9%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 308.79 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.0939236111111112
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.1355494501338035e-27,-9.070183861635415e-28,4.3617604336929e-17)
    sum a = (-4.228536358833626e-25,-2.4675338114100505e-25,9.89100051815164e-16)
    sum e = 1.270358608315374e-09
    sum de = -7.227029090533825e-11
Info: cfl dt = 0.0012349726195543679 cfl multiplier : 0.6086956521738416       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6198e+04 | 11520 |      1 | 3.182e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.467020891032305 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7295912005289532, dt = 0.0012349726195543679 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.9%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 941.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 300.66 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.0935763888888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.503132960698674e-27,-1.3868782663051092e-27,4.484541117415865e-17)
    sum a = (4.5658251531990285e-25,1.3029998687589763e-25,1.0115045210422292e-15)
    sum e = 1.2702730525403667e-09
    sum de = -7.510303740125441e-11
Info: cfl dt = 0.001504241460745581 cfl multiplier : 0.739130434782561         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8142e+04 | 11520 |      1 | 3.020e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.720157575780261 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7308261731485076, dt = 0.001504241460745581 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.8%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 318.80 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.0932291666666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.830436231546679e-27,-4.465748017502452e-28,4.6380792666870274e-17)
    sum a = (-2.0840897083420138e-25,-4.526770661219877e-26,1.0391073287528668e-15)
    sum e = 1.2701622182645662e-09
    sum de = -7.848353782937977e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01223935726569979
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.335259920481739e-27,-1.0346111866636115e-27,4.6401553311033453e-17)
    sum a = (-2.600674124975341e-25,7.739890228595554e-26,1.0390035252448893e-15)
    sum e = 1.2701473889837166e-09
    sum de = -7.833263377130043e-11
Info: cfl dt = 0.000842358966632876 cfl multiplier : 0.41304347826085364       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5140e+04 | 11520 |      1 | 4.582e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.81792380594976 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7323304146092532, dt = 0.000842358966632876 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (2.0%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 1.55 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 274.92 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.09375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.935838979785868e-27,-5.020499324024495e-28,4.727668917172548e-17)
    sum a = (-3.923201239723893e-26,4.510793823592041e-25,1.0546232502795403e-15)
    sum e = 1.2700853316351839e-09
    sum de = -8.022552508072275e-11
Info: cfl dt = 0.0012404276352913066 cfl multiplier : 0.6086956521739024       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8326e+04 | 11520 |      1 | 3.006e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.088894347313524 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7331727735758861, dt = 0.0012404276352913066 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (1.8%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 331.33 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 us    (63.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.0933159722222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.8526262838075614e-27,-2.274480356740379e-28,4.859145171094398e-17)
    sum a = (-2.8758307730102744e-25,5.057556711300168e-25,1.0778052616332966e-15)
    sum e = 1.2699893702116029e-09
    sum de = -8.296203995913475e-11
Info: cfl dt = 0.0015066585419861536 cfl multiplier : 0.7391304347826017       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8114e+04 | 11520 |      1 | 3.022e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.774369065076941 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7344132012111774, dt = 0.0015066585419861536 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.9%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 291.76 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.0936631944444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.602988195872642e-27,-1.2204528743484962e-28,5.0229714015131677e-17)
    sum a = (-7.242833057951803e-26,-9.958895454683728e-26,1.1062638966059647e-15)
    sum e = 1.2698663983558385e-09
    sum de = -8.621554420632794e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011493666852226933
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.737576157698253e-27,-2.4963808793491966e-28,5.02511527392283e-17)
    sum a = (1.7112968303592005e-25,-1.2426429266093779e-26,1.1061567028016813e-15)
    sum e = 1.2698521247092137e-09
    sum de = -8.60696815341444e-11
Info: cfl dt = 0.0008449829052415131 cfl multiplier : 0.41304347826086724      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4839e+04 | 11520 |      1 | 4.638e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.695133814765523 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7359198597531635, dt = 0.0008449829052415131 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.15 us    (2.3%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.54 us    (0.5%)
   LB compute        : 287.92 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.34 us    (62.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.0946180555555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.9691240581771905e-27,-4.82633636674178e-28,5.118575549164007e-17)
    sum a = (-1.242642926609378e-27,2.0379343996393797e-25,1.1222935662870896e-15)
    sum e = 1.2697831873083982e-09
    sum de = -8.789426195003445e-11
Info: cfl dt = 0.001247963250720932 cfl multiplier : 0.6086956521739114        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8325e+04 | 11520 |      1 | 3.006e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.120008525828712 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.736764842658405, dt = 0.001247963250720932 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.0%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 302.81 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.0947916666666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.503132960698674e-27,-2.1635300954359705e-28,5.2593154302725045e-17)
    sum a = (-1.2248908848006725e-26,1.9065692902549599e-25,1.1463399827803685e-15)
    sum e = 1.2696769953472598e-09
    sum de = -9.054017351528951e-11
Info: cfl dt = 0.0015224400106873138 cfl multiplier : 0.7391304347826075       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4654e+04 | 11520 |      1 | 3.324e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.51465762978285 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.738012805909126, dt = 0.0015224400106873138 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.7%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 1.56 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 330.44 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (62.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.0947916666666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.039915619752767e-27,2.7182814019580144e-28,5.435339267742794e-17)
    sum a = (2.5917981040709885e-26,2.854528322839828e-25,1.1760513064947778e-15)
    sum e = 1.2695412532659927e-09
    sum de = -9.370083878565261e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012195913542000622
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.887359010459205e-27,1.1538827175658509e-27,5.437600953701508e-17)
    sum a = (-2.6308525960501403e-25,-1.065122508522324e-26,1.1759382223130737e-15)
    sum e = 1.2695272066037133e-09
    sum de = -9.355809240738493e-11
Info: cfl dt = 0.0008583264531765235 cfl multiplier : 0.4130434782608692       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5111e+04 | 11520 |      1 | 4.588e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.946926723111286 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7395352459198133, dt = 0.0008583264531765235 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 24.68 us   (7.8%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 278.12 us  (87.6%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.0952256944444443
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.145318367991955e-27,3.162082447175649e-28,5.538526233501506e-17)
    sum a = (-4.40605677692068e-25,-5.348690196962937e-25,1.1929060349514758e-15)
    sum e = 1.269450673056143e-09
    sum de = -9.534013975859418e-11
Info: cfl dt = 0.0012714585250962194 cfl multiplier : 0.6086956521739127       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4390e+04 | 11520 |      1 | 3.350e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.224224119096577 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7403935723729899, dt = 0.0012714585250962194 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.0%)
   patch tree reduce : 2.30 us    (0.7%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.5%)
   LB compute        : 303.04 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.38 us    (55.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.0951388888888887
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.1175808026658535e-27,-2.7182814019580144e-28,5.690927484607354e-17)
    sum a = (-3.383539168739249e-25,7.143421623823052e-25,1.2183120786624521e-15)
    sum e = 1.2693329908192962e-09
    sum de = -9.793316236808114e-11
Info: cfl dt = 0.0015579163320027024 cfl multiplier : 0.7391304347826084       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7517e+04 | 11520 |      1 | 3.071e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.906505232248133 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7416650308980861, dt = 0.0015579163320027024 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.7%)
   patch tree reduce : 2.17 us    (0.6%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.54 us    (0.4%)
   LB compute        : 332.51 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.095920138888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.360345269263264e-27,9.319821949570335e-28,5.882345449217141e-17)
    sum a = (4.935067622820101e-26,-2.678783108933645e-25,1.2499108618724612e-15)
    sum e = 1.2691826408334317e-09
    sum de = -1.0104589613555055e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011193374843315396
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.915096575785307e-27,1.2814755180659209e-27,5.884806862457386e-17)
    sum a = (2.2545093097055857e-25,-1.2284412931624135e-25,1.2497877912753772e-15)
    sum e = 1.2691684392280324e-09
    sum de = -1.0090305652169749e-10
Info: cfl dt = 0.0008819577457616173 cfl multiplier : 0.41304347826086946      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.3291e+04 | 11520 |      1 | 4.946e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.339403709325932 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7432229472300889, dt = 0.0008819577457616173 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.6%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 329.54 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.095833333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.576698278806861e-27,7.48914263804759e-28,5.99502327891781e-17)
    sum a = (4.691864650040837e-25,2.2119044093646925e-25,1.2679379293049315e-15)
    sum e = 1.2690832918831622e-09
    sum de = -1.0266607224171761e-10
Info: cfl dt = 0.0013002575030319724 cfl multiplier : 0.608695652173913        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8248e+04 | 11520 |      1 | 3.012e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.541601188236088 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7441049049758505, dt = 0.0013002575030319724 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.8%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 303.84 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (63.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.095920138888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.928965358448358e-27,1.5311136060008407e-27,6.16068824177089e-17)
    sum a = (-4.448661677261573e-25,-9.182243625552868e-26,1.2950166334489564e-15)
    sum e = 1.2689533332178426e-09
    sum de = -1.0521911986495477e-10
Info: cfl dt = 0.0015668111882852984 cfl multiplier : 0.7391304347826088       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7996e+04 | 11520 |      1 | 3.032e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.438991160794348 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7454051624788824, dt = 0.0015668111882852984 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (2.0%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 304.35 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.0955729166666663
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.0940646421326826e-27,3.8277840150021017e-28,6.36535336078076e-17)
    sum a = (2.751566480349337e-25,-1.230438397865893e-25,1.328168162854829e-15)
    sum e = 1.268790327218985e-09
    sum de = -1.0823125289823174e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.014384374656645231
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.369992647133383e-27,5.769413587829254e-28,6.367950470135972e-17)
    sum a = (1.4201633446964319e-27,1.528228899206926e-25,1.3280383071561143e-15)
    sum e = 1.2687764665424773e-09
    sum de = -1.0809310356688771e-10
Info: cfl dt = 0.0008778624241926206 cfl multiplier : 0.4130434782608696       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5098e+04 | 11520 |      1 | 4.590e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.288718254337592 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7469719736671677, dt = 0.0008778624241926206 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (2.1%)
   patch tree reduce : 1.69 us    (0.6%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 275.54 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.0957465277777776
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.978953746029358e-27,1.980462164283696e-27,6.48452379025449e-17)
    sum a = (-1.7752041808705399e-28,-2.148218959375962e-25,1.346891589534758e-15)
    sum e = 1.2686852553287486e-09
    sum de = -1.0978358513788522e-10
Info: cfl dt = 0.0012957175262606631 cfl multiplier : 0.6086956521739131       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8310e+04 | 11520 |      1 | 3.007e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.509790477543586 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7478498360913604, dt = 0.0012957175262606631 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (2.1%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.5%)
   LB compute        : 270.01 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (62.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.095833333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.2480081296925495e-27,1.697538997957454e-27,6.659870423370861e-17)
    sum a = (2.469309015590921e-25,5.973284692976105e-26,1.375050014503618e-15)
    sum e = 1.2685464003265697e-09
    sum de = -1.1223586062842993e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010127011502491476
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.737576157698253e-27,9.76362299478797e-28,6.661694691474791e-17)
    sum a = (3.8983483811917057e-25,1.9314498863524734e-25,1.3749588008814473e-15)
    sum e = 1.268537123528312e-09
    sum de = -1.1214363981582523e-10
Info: cfl dt = 0.0007897909598919043 cfl multiplier : 0.3695652173913044       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.3454e+04 | 11520 |      1 | 4.912e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.49665330734597 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.749145553617621, dt = 0.0007897909598919043 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (2.1%)
   patch tree reduce : 1.75 us    (0.6%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 279.58 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.096701388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.0468500110842924e-27,7.1008167234821595e-28,6.770281785711306e-17)
    sum a = (4.081194411821371e-25,1.4168348368572997e-26,1.3923263568873301e-15)
    sum e = 1.2684514473591673e-09
    sum de = -1.1362901593056702e-10
Info: cfl dt = 0.0012420551702200676 cfl multiplier : 0.5797101449275363       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8328e+04 | 11520 |      1 | 3.006e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.459802224598313 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.749935344577513, dt = 0.0012420551702200676 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (2.1%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.4%)
   LB compute        : 271.93 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.096788194444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.745897427296084e-27,1.6087787889139268e-28,6.94390223751383e-17)
    sum a = (2.0769888916185316e-25,3.7678708738977207e-26,1.4199413710183688e-15)
    sum e = 1.2683138314211063e-09
    sum de = -1.1593617507189788e-10
Info: cfl dt = 0.0015497256257786442 cfl multiplier : 0.7198067632850241       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8039e+04 | 11520 |      1 | 3.028e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.764577941815554 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.751177399747733, dt = 0.0015497256257786442 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (2.1%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 1.08 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 277.15 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.0960069444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.675105865720507e-27,1.3480456748485662e-27,7.165669158917259e-17)
    sum a = (2.9477265423355315e-25,-5.174276386192406e-25,1.4548957681316423e-15)
    sum e = 1.268136459018765e-09
    sum de = -1.1875871889832107e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.013470876946615052
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.087069480807141e-27,5.991314110438072e-28,7.168377645217414e-17)
    sum a = (6.31440127135651e-25,-7.154072848908275e-26,1.454760343675639e-15)
    sum e = 1.2681236525390819e-09
    sum de = -1.1863101047109178e-10
Info: cfl dt = 0.0008825705181408267 cfl multiplier : 0.4066022544283414       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4803e+04 | 11520 |      1 | 4.645e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.012045427925452 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7527271253735116, dt = 0.0008825705181408267 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.9%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 291.58 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.55 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.096788194444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.75895123083795e-27,9.874573256092378e-28,7.296760010838942e-17)
    sum a = (2.3787736023665236e-25,2.154654074531618e-25,1.47493250747481e-15)
    sum e = 1.2680224592861596e-09
    sum de = -1.2023742581834645e-10
Info: cfl dt = 0.001318131205067747 cfl multiplier : 0.6044015029522276        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5301e+04 | 11520 |      1 | 3.263e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.73620419329715 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.7536096958916524, dt = 0.001318131205067747 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.9%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 295.10 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.0972222222222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.583511130150353e-27,1.0984075869136466e-27,7.492065635267853e-17)
    sum a = (2.45821398946048e-25,1.8719528087279842e-25,1.5053768768645069e-15)
    sum e = 1.2678673655304772e-09
    sum de = -1.2259580865502642e-10
Info: cfl dt = 0.001618434090351528 cfl multiplier : 0.7362676686348184        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7153e+04 | 11520 |      1 | 3.101e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.30385970165994 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7549278270967201, dt = 0.001618434090351528 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (2.0%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 323.28 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.35 us    (62.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.09765625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.713877687183034e-27,2.3909781311100083e-27,7.737707444058631e-17)
    sum a = (4.979780578125778e-25,1.834673520929703e-25,1.543252211346972e-15)
    sum e = 1.267671050346713e-09
    sum de = -1.2543050953261126e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.014036116547175024
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.686833560990084e-27,2.7071863758275732e-27,7.740772380880162e-17)
    sum a = (-1.5621796791660752e-26,2.666356679667551e-25,1.5430989644573437e-15)
    sum e = 1.2676576476033226e-09
    sum de = -1.2529513524349135e-10
Info: cfl dt = 0.0009161857450550619 cfl multiplier : 0.4120892228782728       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4968e+04 | 11520 |      1 | 4.614e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.62794524262484 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7565462611870717, dt = 0.0009161857450550619 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (2.1%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 280.23 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.097916666666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.869208053009207e-27,1.6864439718270127e-27,7.882136507162214e-17)
    sum a = (2.3605777595126006e-25,-1.680230757193966e-25,1.564786396111645e-15)
    sum e = 1.2675464826983453e-09
    sum de = -1.2689861437708508e-10
Info: cfl dt = 0.0013545720148027019 cfl multiplier : 0.6080594819188486       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6892e+04 | 11520 |      1 | 3.123e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.562453008072778 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7574624469321267, dt = 0.0013545720148027019 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (1.9%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 291.64 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.097743055555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.014769500977226e-27,1.6087787889139268e-27,8.095091579024604e-17)
    sum a = (3.980895375602186e-25,4.1983578877588267e-26,1.5971173665522251e-15)
    sum e = 1.267377924493926e-09
    sum de = -1.2922330692201506e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010489980355940788
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.378192376743182e-27,1.2870230311311415e-27,8.097281310645569e-17)
    sum a = (-3.135454384462591e-25,1.6962075948218008e-25,1.5970078799581291e-15)
    sum e = 1.267368787360473e-09
    sum de = -1.291299048669545e-10
Info: cfl dt = 0.0008250667781259049 cfl multiplier : 0.36935316063961626      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5122e+04 | 11520 |      1 | 4.586e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.634363623230136 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7588170189469294, dt = 0.0008250667781259049 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (1.8%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 328.15 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.0981770833333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.603620865011777e-27,2.3077654351317017e-27,8.229037709789951e-17)
    sum a = (-2.5598444288153186e-25,1.242642926609378e-27,1.6168494718214559e-15)
    sum e = 1.2672650905594603e-09
    sum de = -1.3053355927731169e-10
Info: cfl dt = 0.0012968765272657525 cfl multiplier : 0.5795687737597442       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8091e+04 | 11520 |      1 | 3.024e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.821113607389588 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7596420857250553, dt = 0.0012968765272657525 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.8%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 313.52 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.0987847222222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.240952198372992e-27,2.0525798341315617e-27,8.439541654331228e-17)
    sum a = (-4.2072339086631793e-26,-6.820334462904614e-25,1.6482324801476966e-15)
    sum e = 1.267099222163444e-09
    sum de = -1.3270610337858579e-10
Info: cfl dt = 0.0016153932069298352 cfl multiplier : 0.7197125158398295       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7450e+04 | 11520 |      1 | 3.076e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.17738159447094 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.760938962252321, dt = 0.0016153932069298352 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (1.9%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 313.13 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.099045138888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.081461197747904e-27,-4.6599109747851675e-28,8.707831004264206e-17)
    sum a = (-1.5621796791660752e-26,-5.538637044316084e-26,1.6875821497662228e-15)
    sum e = 1.2668870142095015e-09
    sum de = -1.3534571433608607e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.013955108796036318
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.460078964449199e-27,7.988418813917429e-28,8.711009263658902e-17)
    sum a = (-1.9243213320636652e-25,1.1556579217467214e-25,1.6874232362814124e-15)
    sum e = 1.2668745832772155e-09
    sum de = -1.3521548974125573e-10
Info: cfl dt = 0.0009167214908315894 cfl multiplier : 0.4065708386132765       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5027e+04 | 11520 |      1 | 4.603e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.633640395424298 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7625543554592509, dt = 0.0009167214908315894 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.7%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 321.14 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.63 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.09921875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.360284499269248e-27,1.64761138037047e-27,8.865686142413762e-17)
    sum a = (4.6155308702634035e-27,-1.7965066310409865e-25,1.7098695260185192e-15)
    sum e = 1.2667540121107931e-09
    sum de = -1.367071504671282e-10
Info: cfl dt = 0.0013662987707031221 cfl multiplier : 0.6043805590755177       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8013e+04 | 11520 |      1 | 3.031e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.889681257183923 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7634710769500824, dt = 0.0013662987707031221 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.8%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 302.95 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.099392361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.6307257611987435e-27,2.385430618044788e-28,9.100334255690345e-17)
    sum a = (-1.334953544014646e-25,5.78716562963796e-26,1.7434033748021159e-15)
    sum e = 1.2665704493908936e-09
    sum de = -1.3888156574730444e-10
Info: cfl dt = 0.0016713846278932445 cfl multiplier : 0.7362537060503452       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7836e+04 | 11520 |      1 | 3.045e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.154808543125185 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7648373757207856, dt = 0.0016713846278932445 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (1.9%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 305.10 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (59.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.0997395833333337
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.321391137818688e-27,1.753014128609658e-27,9.394014878479857e-17)
    sum a = (-2.89358281481898e-25,6.110252790556399e-25,1.7844739517633456e-15)
    sum e = 1.2663402420077175e-09
    sum de = -1.4146690996551281e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011979910519629147
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.8415312576771206e-27,2.3327292439251938e-27,9.39744711517395e-17)
    sum a = (-3.017847107479918e-26,1.952724598957594e-26,1.7843023398922493e-15)
    sum e = 1.266327557490538e-09
    sum de = -1.4133045829093533e-10
Info: cfl dt = 0.0009408171865527044 cfl multiplier : 0.41208456868344845      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4896e+04 | 11520 |      1 | 4.627e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.003451560558918 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7665087603486789, dt = 0.0009408171865527044 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.6%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.60 us    (0.5%)
   LB compute        : 332.54 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1000868055555553
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.949707762448919e-27,8.016156379243532e-28,9.565303004125192e-17)
    sum a = (-6.390735051133943e-27,1.1396810841188867e-25,1.8074230420403082e-15)
    sum e = 1.2661979993238915e-09
    sum de = -1.4277850165876434e-10
Info: cfl dt = 0.0013927406355375997 cfl multiplier : 0.6080563791222989       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8036e+04 | 11520 |      1 | 3.029e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.182908185588284 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7674495775352316, dt = 0.0013927406355375997 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (1.7%)
   patch tree reduce : 19.49 us   (5.4%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 319.55 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1006944444444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.5807981436117595e-27,8.182581771200145e-28,9.81811777356457e-17)
    sum a = (-1.1006265921397348e-25,-1.0367192416283954e-25,1.841558216488148e-15)
    sum e = 1.2660023024274077e-09
    sum de = -1.4486839221866066e-10
Info: cfl dt = 0.001696399029068011 cfl multiplier : 0.7387042527481992        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5546e+04 | 11520 |      1 | 3.241e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.470839582228423 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7688423181707692, dt = 0.001696399029068011 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (2.2%)
   patch tree reduce : 1.77 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 265.68 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1011284722222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.439336560448639e-27,7.045341592829955e-28,1.0132896602573249e-16)
    sum a = (-1.5657300875278162e-25,-4.5622747448372874e-26,1.8828872464116636e-15)
    sum e = 1.265758402700033e-09
    sum de = -1.473343865229537e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012282930285490786
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.34080743354696e-27,1.4617696926855852e-27,1.0136402129255403e-16)
    sum a = (-6.035694214959836e-26,-5.041579873672333e-25,1.8827119704438694e-15)
    sum e = 1.2657459321224584e-09
    sum de = -1.4719745583451094e-10
Info: cfl dt = 0.0009447840052007833 cfl multiplier : 0.412901417582733        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.3252e+04 | 11520 |      1 | 4.954e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.32641051576253 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7705387171998372, dt = 0.0009447840052007833 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (2.1%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 274.94 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1015625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.658463326524846e-27,5.2701374119594155e-28,1.0314262877878178e-16)
    sum a = (-1.6118853962304502e-25,-1.6615911132948253e-25,1.9055859803857437e-15)
    sum e = 1.2656101576446704e-09
    sum de = -1.4856234437265418e-10
Info: cfl dt = 0.0013899449276404301 cfl multiplier : 0.6086009450551554       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8078e+04 | 11520 |      1 | 3.025e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.242247273406344 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7714835012050381, dt = 0.0013899449276404301 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (2.0%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 291.02 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.101302083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.32561254261162e-27,-3.6613586230454884e-28,1.0580209384430171e-16)
    sum a = (-1.384659261079021e-26,4.7930512883504574e-27,1.938955727904521e-15)
    sum e = 1.2654066554552585e-09
    sum de = -1.5051554428708728e-10
Info: cfl dt = 0.0016843314993501804 cfl multiplier : 0.739067296703437        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3399e+04 | 11520 |      1 | 3.449e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.50723513093878 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7728734461326785, dt = 0.0016843314993501804 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.9%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 299.80 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1016493055555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.730580996372712e-27,6.310296111688247e-28,1.0909112910805886e-16)
    sum a = (3.5504083617410798e-28,-3.8876971561064823e-25,1.9788548836620186e-15)
    sum e = 1.2651548647968674e-09
    sum de = -1.528034924707399e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012690043161807083
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.981666732567953e-27,-4.854073932067883e-28,1.0912473081133532e-16)
    sum a = (2.982343023862507e-25,-3.1971427297478424e-25,1.9786868749086467e-15)
    sum e = 1.2651430949282291e-09
    sum de = -1.5267245417557432e-10
Info: cfl dt = 0.0009403259740179122 cfl multiplier : 0.41302243223447893      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4987e+04 | 11520 |      1 | 4.610e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.151745031634539 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7745577776320287, dt = 0.0009403259740179122 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (1.9%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 319.16 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.102170138888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.647368300394405e-27,4.035815754947868e-28,1.109851999820329e-16)
    sum a = (-2.0627872581715674e-25,2.2403076762586215e-25,2.0006885816969424e-15)
    sum e = 1.2650026738215955e-09
    sum de = -1.5394129190792248e-10
Info: cfl dt = 0.001385155608026847 cfl multiplier : 0.6086816214896525        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4926e+04 | 11520 |      1 | 3.298e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.263136038373453 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7754981036060467, dt = 0.001385155608026847 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.0%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.5%)
   LB compute        : 291.31 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1016493055555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.7264811315678125e-27,4.119028450926175e-28,1.137668093808185e-16)
    sum a = (-4.580026786645993e-25,-1.3491551774616104e-25,2.03265128924119e-15)
    sum e = 1.2647923382210222e-09
    sum de = -1.5575716987162518e-10
Info: cfl dt = 0.0016820769846929793 cfl multiplier : 0.7391210809931016       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1737e+04 | 11520 |      1 | 3.630e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.737508354383252 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7768832592140735, dt = 0.0016820769846929793 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (2.2%)
   patch tree reduce : 1.76 us    (0.6%)
   gen split merge   : 1.05 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.5%)
   LB compute        : 267.00 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.102604166666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.689096188371591e-27,9.486247341526947e-28,1.1720802199560884e-16)
    sum a = (1.065122508522324e-25,-1.1467819008423688e-25,2.0706579907516807e-15)
    sum e = 1.2645320871279766e-09
    sum de = -1.578854919718274e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01252108658477637
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.103712020002802e-27,3.377048578452941e-28,1.1723998709110804e-16)
    sum a = (3.4083920272714366e-26,-4.420258410367644e-25,2.0704981648843498e-15)
    sum e = 1.264520822608284e-09
    sum de = -1.5775891492348795e-10
Info: cfl dt = 0.0009416069363527736 cfl multiplier : 0.4130403603310338       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4956e+04 | 11520 |      1 | 4.616e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.118339950177903 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7785653361987666, dt = 0.0009416069363527736 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (2.1%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 277.74 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.102777777777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.1758296898506676e-27,-1.1261451522397488e-27,1.1918944810730158e-16)
    sum a = (-5.932732372469344e-25,2.4355801361543807e-25,2.0913710390331158e-15)
    sum e = 1.2643753152875835e-09
    sum de = -1.5894153579002654e-10
Info: cfl dt = 0.001389108075532037 cfl multiplier : 0.6086935735540225        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2560e+04 | 11520 |      1 | 3.538e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.580937416012167 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7795069431351194, dt = 0.001389108075532037 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (1.6%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.3%)
   LB compute        : 372.78 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (72.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1034722222222224
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.905449197915188e-27,1.9450967684929157e-28,1.221044155249238e-16)
    sum a = (-3.965806140064786e-25,-1.7752041808705398e-26,2.1215482017739126e-15)
    sum e = 1.2641573717333776e-09
    sum de = -1.6063426427513369e-10
Info: cfl dt = 0.0016906414316199677 cfl multiplier : 0.7391290490360151       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5116e+04 | 11520 |      1 | 3.281e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.24380620991411 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7808960512106514, dt = 0.0016906414316199677 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.2%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.5%)
   LB compute        : 273.79 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1045138888888886
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.361792917523585e-27,1.3175343529898537e-29,1.2571215248865261e-16)
    sum a = (7.739890228595554e-26,-1.7610025474235756e-25,2.15721709495125e-15)
    sum e = 1.2638875740005538e-09
    sum de = -1.626190684589155e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012153883177720313
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.605883492393284e-27,2.3611602483844483e-28,1.2574230413967636e-16)
    sum a = (1.4556674283138427e-26,3.1243593583321503e-26,2.157066336859539e-15)
    sum e = 1.2638766593216918e-09
    sum de = -1.624952249481173e-10
Info: cfl dt = 0.0009489850890546487 cfl multiplier : 0.4130430163453383       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4986e+04 | 11520 |      1 | 4.611e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.200732773567154 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7825866926422714, dt = 0.0009489850890546487 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (2.0%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 298.01 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1052083333333336
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.772308884349897e-27,-4.3235929952061785e-28,1.2778920048924475e-16)
    sum a = (-3.017847107479918e-25,-6.603759552838408e-26,2.176568539066663e-15)
    sum e = 1.2637254334861364e-09
    sum de = -1.6360011941828896e-10
Info: cfl dt = 0.0014021114189621522 cfl multiplier : 0.6086953442302255       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6520e+04 | 11520 |      1 | 3.154e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.830260486366145 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.783535677731326, dt = 0.0014021114189621522 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (1.8%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.18 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 320.33 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.105729166666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5962361145231646e-27,-3.162082447175649e-28,1.3085024574385228e-16)
    sum a = (1.4130625279729497e-25,1.8817164317227722e-25,2.2046219638340036e-15)
    sum e = 1.2634988703837108e-09
    sum de = -1.6518107415723466e-10
Info: cfl dt = 0.0017102427089548398 cfl multiplier : 0.7391302294868171       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2057e+04 | 11520 |      1 | 3.594e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.046259334874168 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7849377891502882, dt = 0.0017102427089548398 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (1.9%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 320.49 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.105642361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1953675255669716e-27,9.195002905602875e-28,1.3464035139441624e-16)
    sum a = (2.5562940204535773e-26,8.094931064769662e-26,2.237551377348076e-15)
    sum e = 1.2632181943551948e-09
    sum de = -1.670340557584735e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01369885774231845
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.395077995914908e-27,3.9526030589695614e-28,1.346685100438547e-16)
    sum a = (-8.556484151796002e-26,-1.9278717404254063e-25,2.2374105841491694e-15)
    sum e = 1.263207505191405e-09
    sum de = -1.669112796169517e-10
Info: cfl dt = 0.0009624868002801572 cfl multiplier : 0.413043409828939        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5019e+04 | 11520 |      1 | 4.604e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.371436386168456 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.786648031859243, dt = 0.0009624868002801572 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (1.9%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 318.59 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1065104166666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.5947884662628434e-27,6.4905902863079115e-28,1.3682186779896594e-16)
    sum a = (-6.408487092942649e-25,-1.2177900680771903e-25,2.2553168475396907e-15)
    sum e = 1.2630498084741548e-09
    sum de = -1.6794428437781729e-10
Info: cfl dt = 0.0014221879285086733 cfl multiplier : 0.608695606552626        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5404e+04 | 11520 |      1 | 3.254e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.648830953795295 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7876105186595231, dt = 0.0014221879285086733 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (1.7%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 344.33 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.107291666666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1746251215664115e-27,7.794255856634715e-28,1.400379694650086e-16)
    sum a = (-3.5504083617410794e-27,-3.3089805931426864e-25,2.2808837415031206e-15)
    sum e = 1.262813773288611e-09
    sum de = -1.6941855728827625e-10
Info: cfl dt = 0.0017355460689660895 cfl multiplier : 0.7391304043684173       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7878e+04 | 11520 |      1 | 3.041e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.83418075353992 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7890327065880318, dt = 0.0017355460689660895 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (1.9%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 311.86 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1082465277777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2175575778278536e-27,-1.0124211344027298e-27,1.4401472874055384e-16)
    sum a = (-4.9705717064375114e-26,-4.878261089032244e-25,2.3106033718054793e-15)
    sum e = 1.2625215953615502e-09
    sum de = -1.7114102757687984e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.014746213553116212
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9623719768277136e-27,-4.4380104521763497e-29,1.440405186363524e-16)
    sum a = (4.544522703028582e-26,-4.292443709344966e-25,2.310474422680817e-15)
    sum e = 1.2625110887953979e-09
    sum de = -1.7101839639979342e-10
Info: cfl dt = 0.000977014990585102 cfl multiplier : 0.41304346812280573       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4481e+04 | 11520 |      1 | 4.706e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.277282681204644 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7907682526569979, dt = 0.000977014990585102 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (1.8%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.4%)
   LB compute        : 319.39 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.109027777777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.574046062262283e-27,-6.878916200873342e-28,1.4629777488493607e-16)
    sum a = (1.824909897934915e-25,1.7468009139766113e-25,2.3264958480637774e-15)
    sum e = 1.2623469278830873e-09
    sum de = -1.7197726354552346e-10
Info: cfl dt = 0.001436220184938615 cfl multiplier : 0.6086956454152038        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4848e+04 | 11520 |      1 | 3.306e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.639760817134789 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.791745267647583, dt = 0.001436220184938615 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.0%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 302.13 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1087673611111106
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.661358623045488e-27,-5.159187150655006e-28,1.4964696176557916e-16)
    sum a = (-2.0201823578306744e-25,6.603759552838408e-26,2.3490686307757642e-15)
    sum e = 1.2621026767628758e-09
    sum de = -1.7333355756752352e-10
Info: cfl dt = 0.001735898482271254 cfl multiplier : 0.7391304302768026        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3675e+04 | 11520 |      1 | 3.421e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.114084211886073 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7931814878325216, dt = 0.001735898482271254 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (1.9%)
   patch tree reduce : 2.31 us    (0.7%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 325.04 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (60.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1102430555555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8736117677841863e-27,-6.98986646217775e-28,1.5374091618040244e-16)
    sum a = (-1.5337764122721464e-25,2.5207899368361666e-26,2.374781189129617e-15)
    sum e = 1.2618034919748945e-09
    sum de = -1.7489496822528685e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01377731561638275
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.383982969784466e-27,-7.378192376743181e-28,1.5376323338059766e-16)
    sum a = (-4.825004963606128e-25,-9.728118911170559e-26,2.3746696029347886e-15)
    sum e = 1.2617934733999321e-09
    sum de = -1.747759961440363e-10
Info: cfl dt = 0.000967619683605648 cfl multiplier : 0.41304347675893416       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4934e+04 | 11520 |      1 | 4.620e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.525854952812855 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7949173863147929, dt = 0.000967619683605648 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    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   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.4%)
   LB compute        : 319.48 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.58 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.111979166666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.852869363783626e-27,-1.1732990132941225e-27,1.5606091357633032e-16)
    sum a = (2.3823240107282645e-25,-1.134355471576275e-25,2.388270420530588e-15)
    sum e = 1.2616271182863503e-09
    sum de = -1.7563579382137618e-10
Info: cfl dt = 0.0014242009238139162 cfl multiplier : 0.6086956511726228       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8076e+04 | 11520 |      1 | 3.026e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.513558330919325 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7958850059983986, dt = 0.0014242009238139162 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.81 us    (2.3%)
   patch tree reduce : 2.47 us    (0.8%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 277.40 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1125868055555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.54076098387096e-27,-1.3036655703268027e-27,1.594688707280169e-16)
    sum a = (7.361771738070129e-25,1.2586197642372127e-25,2.407302400726521e-15)
    sum e = 1.2613796102602494e-09
    sum de = -1.7684981283886517e-10
Info: cfl dt = 0.0017286357947158134 cfl multiplier : 0.739130434115082        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7945e+04 | 11520 |      1 | 3.036e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.887740579273046 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7973092069222125, dt = 0.0017286357947158134 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.8%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 316.05 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.11328125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.9387342763065104e-27,-2.995657055219036e-28,1.6364377250635516e-16)
    sum a = (1.532001208091276e-25,-6.390735051133944e-25,2.428840583093371e-15)
    sum e = 1.2610756471808409e-09
    sum de = -1.7824794258060561e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011147325732243286
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.8277840150021014e-27,-4.937286628046189e-28,1.6366238833997317e-16)
    sum a = (5.533311431773473e-25,-4.9812229315227345e-25,2.4287475040639246e-15)
    sum e = 1.2610661683541459e-09
    sum de = -1.7813346983313545e-10
Info: cfl dt = 0.0009687044074352494 cfl multiplier : 0.41304347803836067      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.3875e+04 | 11520 |      1 | 4.825e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.897096882515955 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7990378427169283, dt = 0.0009621572830716962 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (2.1%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 1.08 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 275.60 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1146701388888887
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.282680086350177e-27,-8.654120381743882e-28,1.6599914499095491e-16)
    sum a = (3.4474465192505886e-25,-3.905449197915188e-25,2.4400227810497428e-15)
    sum e = 1.2608974056371456e-09
    sum de = -1.7890051074699356e-10
Info: cfl dt = 0.0014299853356420304 cfl multiplier : 0.6086956520255739       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8133e+04 | 11520 |      1 | 3.021e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.465469017571637 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 360                                                     [SPH][rank=0]
Info: time since start : 149.469976234 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[0. 0. 0. ... 0. 0. 0.]
(11520, 3)
[[0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 ...
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]]
compute original rho
Info: Dumping state to _to_trash/dusty_settle/dump/0000008.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.14 us   (69.0%)
Info: dump to _to_trash/dusty_settle/dump/0000008.sham                      [Shamrock Dump][rank=0]
              - took 1.04 ms, bandwidth = 2.84 GB/s
Info: evolve_until (target_time = 0.90s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.8, dt = 0.0014299853356420304 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.17 us    (0.9%)
   patch tree reduce : 1.53 us    (0.5%)
   gen split merge   : 500.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.3%)
   LB compute        : 324.82 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.115364583333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.037141863220157e-27,-2.0969599386533254e-27,1.6949376608167945e-16)
    sum a = (9.586102576700915e-27,-1.604784579506968e-25,2.455823190555404e-15)
    sum e = 1.2606442263584808e-09
    sum de = -1.7999086978546778e-10
Info: cfl dt = 0.0017432749263616674 cfl multiplier : 0.739130434683716        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9166e+04 | 11520 |      1 | 3.950e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.033565662850057 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.801429985335642, dt = 0.0017432749263616674 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.6%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 342.40 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.116579861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.6155308702634035e-27,-2.1690776085011907e-27,1.7378623825163041e-16)
    sum a = (9.89676330835326e-26,3.3853143729201194e-25,2.473557052999411e-15)
    sum e = 1.260332288753466e-09
    sum de = -1.8124507959379667e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011969219503651785
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.881811497393985e-27,-2.130245017044648e-27,1.7380169575292008e-16)
    sum a = (2.305102628860396e-25,7.704386144978144e-26,2.4734797655416033e-15)
    sum e = 1.2603230807392756e-09
    sum de = -1.811323722959349e-10
Info: cfl dt = 0.0009821769882699058 cfl multiplier : 0.4130434782279053       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4936e+04 | 11520 |      1 | 4.620e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.584510990695415 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8031732602620036, dt = 0.0009821769882699058 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (1.9%)
   patch tree reduce : 1.53 us    (0.5%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 311.46 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1185763888888887
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.0593319154810386e-27,-2.1857201476968523e-27,1.7623102328905138e-16)
    sum a = (4.908439560107043e-26,9.870135245640202e-26,2.4827721790941478e-15)
    sum e = 1.2601478191679246e-09
    sum de = -1.8182755584308915e-10
Info: cfl dt = 0.001454289342025141 cfl multiplier : 0.6086956521519369        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7948e+04 | 11520 |      1 | 3.036e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.647490534945918 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8041554372502735, dt = 0.001454289342025141 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.7%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 1.57 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 309.61 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1190972222222224
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.515675635089436e-27,-1.4922810145442976e-27,1.798462558028402e-16)
    sum a = (-3.2503988551739585e-25,-7.283662754111825e-25,2.495613139827564e-15)
    sum e = 1.2598860431553011e-09
    sum de = -1.828064904703145e-10
Info: cfl dt = 0.0017707368165642522 cfl multiplier : 0.7391304347679579       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2028e+04 | 11520 |      1 | 3.597e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.555403020946086 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8056097265922987, dt = 0.0017707368165642522 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.7%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 1.47 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 316.33 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.56 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1206597222222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.628073544654166e-27,-3.572598414001962e-27,1.8427466710894963e-16)
    sum a = (-3.0577892015495047e-25,-2.058349247719391e-25,2.5098381230435375e-15)
    sum e = 1.2595642314325463e-09
    sum de = -1.839233694358113e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011019455993371731
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.68354867530637e-27,-2.7848515587406593e-27,1.842872614609924e-16)
    sum a = (1.3562559941850925e-25,-3.9640309358839158e-25,2.5097751509728406e-15)
    sum e = 1.2595551485323378e-09
    sum de = -1.838109336587073e-10
Info: cfl dt = 0.0009857065360305488 cfl multiplier : 0.413043478255986        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4568e+04 | 11520 |      1 | 4.689e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.594961293315563 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8073804634088629, dt = 0.0009857065360305488 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (1.7%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 333.09 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.123177083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.626625896393844e-27,-4.288227599415398e-27,1.8676110747259813e-16)
    sum a = (-2.6073311406536054e-27,-2.5571816225440127e-25,2.5170822554245553e-15)
    sum e = 1.259376540948982e-09
    sum de = -1.8442117090733016e-10
Info: cfl dt = 0.0014498748433007973 cfl multiplier : 0.6086956521706574       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8085e+04 | 11520 |      1 | 3.025e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.731522831767604 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8083661699448935, dt = 0.0014498748433007973 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (2.0%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 280.78 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.124392361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.5489607134807586e-27,-5.0038567848288345e-27,1.904141630494043e-16)
    sum a = (3.3518073940061883e-26,3.215782373646983e-25,2.527067849356491e-15)
    sum e = 1.2591117037193991e-09
    sum de = -1.8526955563047722e-10
Info: cfl dt = 0.0017582545920511606 cfl multiplier : 0.7391304347804383       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7885e+04 | 11520 |      1 | 3.041e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.165075408649958 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8098160447881944, dt = 0.0017582545920511606 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.8%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 301.14 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1277777777777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.960924328567392e-27,-3.694643701436811e-27,1.948646306273224e-16)
    sum a = (4.766201325114791e-25,-3.7678708738977207e-26,2.538064744587108e-15)
    sum e = 1.2587877853313424e-09
    sum de = -1.8622710683820702e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011553067554860018
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.8929065235244255e-27,-3.056679698936461e-27,1.9487429829627074e-16)
    sum a = (5.408825238589926e-25,-5.725033483307491e-26,2.53801640601159e-15)
    sum e = 1.2587792113427837e-09
    sum de = -1.861202641056384e-10
Info: cfl dt = 0.0009844607062039121 cfl multiplier : 0.41304347826014604      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4987e+04 | 11520 |      1 | 4.610e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.729306606461831 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8115742993802455, dt = 0.0009844607062039121 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.0%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 303.63 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1300347222222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.2368523335680925e-27,-4.1717298250457684e-27,1.973728332284328e-16)
    sum a = (-4.467301321160714e-25,-3.12913021956824e-25,2.543706909187462e-15)
    sum e = 1.2585984714237373e-09
    sum de = -1.866462265827151e-10
Info: cfl dt = 0.001452747233574949 cfl multiplier : 0.6086956521734307        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8099e+04 | 11520 |      1 | 3.024e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.72094325899136 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8125587600864494, dt = 0.001452747233574949 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (1.9%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 309.85 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1317708333333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.5489607134807586e-27,-5.031594350154936e-27,2.010709974389999e-16)
    sum a = (-1.9971047034793572e-27,-9.83685016724888e-26,2.551544692053657e-15)
    sum e = 1.2583298556852217e-09
    sum de = -1.8737584921104164e-10
Info: cfl dt = 0.001770472004719891 cfl multiplier : 0.7391304347822872        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7828e+04 | 11520 |      1 | 3.045e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.173474966462063 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8140115073200244, dt = 0.001770472004719891 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.3%)
   patch tree reduce : 1.90 us    (0.7%)
   gen split merge   : 1.44 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 264.18 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1342881944444447
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.1813772029158884e-27,-4.3880828345893655e-27,2.0559412904810238e-16)
    sum a = (2.862072940608528e-25,2.2110168072742575e-25,2.5603232111024974e-15)
    sum e = 1.2580000451808683e-09
    sum de = -1.8819737786164733e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011801443454079219
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.493485582828554e-27,-3.3562454044583646e-27,2.0560190010612334e-16)
    sum a = (-3.9808953756021856e-26,1.0260680165431721e-25,2.5602843557770657e-15)
    sum e = 1.2579917102742318e-09
    sum de = -1.880931211157048e-10
Info: cfl dt = 0.000997466117343738 cfl multiplier : 0.41304347826076243       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4783e+04 | 11520 |      1 | 4.648e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.711737205661047 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8157819793247443, dt = 0.000997466117343738 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.9%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 292.44 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 us    (63.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.137326388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.9594766803070705e-27,-5.020499324024495e-27,2.0815566260304553e-16)
    sum a = (9.43521022132692e-26,2.512801518022249e-25,2.564949646576289e-15)
    sum e = 1.2578065712412234e-09
    sum de = -1.8854626582569416e-10
Info: cfl dt = 0.0014771075924263964 cfl multiplier : 0.6086956521738416       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7766e+04 | 11520 |      1 | 3.050e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.771882676591062 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.816779445442088, dt = 0.0014771075924263964 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (2.0%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 297.45 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.139322916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.482390556698113e-27,-2.435358235631772e-27,2.1194669593918903e-16)
    sum a = (-5.75166154602055e-26,-1.358031198365963e-25,2.571565495615409e-15)
    sum e = 1.2575306654017817e-09
    sum de = -1.8917241329996097e-10
Info: cfl dt = 0.0018095545353837331 cfl multiplier : 0.739130434782561        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7149e+04 | 11520 |      1 | 3.101e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.147795870724515 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8182565530345144, dt = 0.0018095545353837331 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (2.1%)
   patch tree reduce : 2.23 us    (0.7%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 291.61 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.39 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1421006944444443
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.671006000915608e-27,-4.027494485350038e-27,2.166049700999182e-16)
    sum a = (1.8475437512410143e-25,6.223865858132113e-25,2.579390185949574e-15)
    sum e = 1.257190447026381e-09
    sum de = -1.8987401087074828e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012084903403145738
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.8929065235244255e-27,-2.9623719768277136e-27,2.166120497027742e-16)
    sum a = (3.350697891393144e-26,2.23675726789688e-25,2.579354787852747e-15)
    sum e = 1.257182087320077e-09
    sum de = -1.8976946397598414e-10
Info: cfl dt = 0.0010235697588345614 cfl multiplier : 0.41304347826085364      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.3972e+04 | 11520 |      1 | 4.806e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.556027531789367 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8200661075698982, dt = 0.0010235697588345614 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.1%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.5%)
   LB compute        : 291.84 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.146354166666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.8929065235244255e-27,-3.672453649175929e-27,2.192521672303955e-16)
    sum a = (-2.2864629849612555e-25,-1.1219290423101812e-25,2.5837694780057232e-15)
    sum e = 1.2569903803916732e-09
    sum de = -1.9015721574073144e-10
Info: cfl dt = 0.0015132435183490907 cfl multiplier : 0.6086956521739024       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7573e+04 | 11520 |      1 | 3.066e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.018456345239318 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8210896773287327, dt = 0.0015132435183490907 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.9%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 297.22 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1488715277777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.7930512883504574e-27,-3.567050900936741e-27,2.23164299022906e-16)
    sum a = (1.9305345466967122e-26,-5.467628877081263e-26,2.5903991863067313e-15)
    sum e = 1.2567053078263973e-09
    sum de = -1.9068651646795548e-10
Info: cfl dt = 0.0018439476667425326 cfl multiplier : 0.7391304347826017       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7395e+04 | 11520 |      1 | 3.081e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.68367774282452 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8226029208470819, dt = 0.0018439476667425326 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.0%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 301.48 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1513888888888886
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.06077956374136e-27,-3.883259145654306e-27,2.27945875736531e-16)
    sum a = (1.2430867276545955e-25,2.23675726789688e-26,2.5988960428433935e-15)
    sum e = 1.2563558386868918e-09
    sum de = -1.9126810664268975e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.013389159710840022
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.3825353215241455e-27,-3.772308884349897e-27,2.279537096179628e-16)
    sum a = (-2.2598349222481974e-25,-4.331498201324117e-26,2.5988568731768773e-15)
    sum e = 1.2563474823259056e-09
    sum de = -1.9116434920200775e-10
Info: cfl dt = 0.0010271637939339743 cfl multiplier : 0.41304347826086724      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4945e+04 | 11520 |      1 | 4.618e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.374172766304708 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8244468685138244, dt = 0.0010271637939339743 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (2.0%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 288.05 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1573784722222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.8721641195238654e-27,-3.616978518523725e-27,2.306231251922516e-16)
    sum a = (9.976647496492435e-26,1.1006265921397347e-26,2.603948138181636e-15)
    sum e = 1.256153616165565e-09
    sum de = -1.914810312883309e-10
Info: cfl dt = 0.0015112712022533864 cfl multiplier : 0.6086956521739114       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5363e+04 | 11520 |      1 | 3.258e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.350992391824912 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8254740323077584, dt = 0.0015112712022533864 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.8%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 313.30 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1604166666666664
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.9276392501760696e-27,-3.719607510230303e-27,2.3456101180518884e-16)
    sum a = (2.7520102813945544e-25,-1.2497437433328601e-25,2.6120582378648135e-15)
    sum e = 1.2558668634246276e-09
    sum de = -1.9190674508836221e-10
Info: cfl dt = 0.0018325056289269545 cfl multiplier : 0.7391304347826075       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7524e+04 | 11520 |      1 | 3.070e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.721556966601486 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8269853035100118, dt = 0.0018325056289269545 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (2.1%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 1.53 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.5%)
   LB compute        : 273.06 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1644965277777772
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.393630347654586e-27,-4.06077956374136e-27,2.3935375150703864e-16)
    sum a = (6.746885389921096e-26,3.0853048663529983e-25,2.6232210414414176e-15)
    sum e = 1.2555172974505334e-09
    sum de = -1.9236660046722183e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012386466009886526
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.859621445133103e-27,-3.7112862406324724e-27,2.3936397945989483e-16)
    sum a = (2.3213013670108397e-25,1.3917600778025034e-25,2.6231699018976167e-15)
    sum e = 1.2555093088934606e-09
    sum de = -1.9226902081202615e-10
Info: cfl dt = 0.001024747527682255 cfl multiplier : 0.4130434782608692        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4879e+04 | 11520 |      1 | 4.630e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.247273683140461 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8288178091389388, dt = 0.001024747527682255 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.7%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 325.79 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (71.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.17265625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.270137411959415e-27,-3.630847301186776e-27,2.42052019474169e-16)
    sum a = (-1.5340260503600815e-25,3.213119567375677e-25,2.6302602502768383e-15)
    sum e = 1.255314708219753e-09
    sum de = -1.9252185491684722e-10
Info: cfl dt = 0.001510973413693391 cfl multiplier : 0.6086956521739127        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7585e+04 | 11520 |      1 | 3.065e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.03582498541738 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.829842556666621, dt = 0.001510973413693391 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (2.0%)
   patch tree reduce : 1.95 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 279.02 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.176996527777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.748671183828694e-27,-3.198141282099582e-27,2.4602990569051297e-16)
    sum a = (-4.04391512402309e-25,-1.2497437433328601e-25,2.6420366631438462e-15)
    sum e = 1.2550264381416393e-09
    sum de = -1.9285959441004905e-10
Info: cfl dt = 0.0018383009777778782 cfl multiplier : 0.7391304347826084       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7456e+04 | 11520 |      1 | 3.076e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.68583641497681 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8313535300803144, dt = 0.0018383009777778782 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (1.8%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 296.72 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.184461805555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.2715850602197365e-27,-4.2979357472795336e-27,2.508956611974751e-16)
    sum a = (6.337478925707827e-26,4.054566349108313e-25,2.658962005428183e-15)
    sum e = 1.2546740975746231e-09
    sum de = -1.9322217086669343e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012583905736926762
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.5836934401324026e-27,-3.003978324816867e-27,2.5091121813771456e-16)
    sum a = (5.796929252632748e-25,1.604784579506968e-25,2.658884220944448e-15)
    sum e = 1.2546662658256747e-09
    sum de = -1.931289290141781e-10
Info: cfl dt = 0.001028905641055551 cfl multiplier : 0.41304347826086946       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.3826e+04 | 11520 |      1 | 4.835e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.68745862213987 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8331918310580924, dt = 0.001028905641055551 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.7%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.4%)
   LB compute        : 318.56 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2026909722222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.225757307437652e-27,-3.381209213251856e-27,2.5364688761119054e-16)
    sum a = (-3.419930854447095e-25,4.970571706437512e-27,2.6698804542852153e-15)
    sum e = 1.2544699608033522e-09
    sum de = -1.9333021030540521e-10
Info: cfl dt = 0.0015167835817273734 cfl multiplier : 0.608695652173913        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7643e+04 | 11520 |      1 | 3.060e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.103601797775113 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8342207366991479, dt = 0.0015167835817273734 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (2.0%)
   patch tree reduce : 1.57 us    (0.5%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 281.98 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2371527777777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.9942094069587145e-27,-2.8398066100429994e-27,2.5770217549416843e-16)
    sum a = (2.890920008547674e-25,4.6403837287955915e-25,2.6883551103637515e-15)
    sum e = 1.2541793592062095e-09
    sum de = -1.93597255621262e-10
Info: cfl dt = 0.00184411223455898 cfl multiplier : 0.7391304347826088         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7443e+04 | 11520 |      1 | 3.077e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.747566874148692 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8357375202808752, dt = 0.00184411223455898 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (2.1%)
   patch tree reduce : 1.89 us    (0.7%)
   gen split merge   : 1.31 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.5%)
   LB compute        : 265.33 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.250868055555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.558608091350878e-27,-2.2550640610121077e-27,2.626738150688228e-16)
    sum a = (1.153882717565851e-26,1.821359489573174e-25,2.7150520060771306e-15)
    sum e = 1.253824576327983e-09
    sum de = -1.9388231855743444e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012151890965780607
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.303422490350738e-27,-2.257837817544718e-27,2.6269843111192187e-16)
    sum a = (8.325707608282832e-26,5.8120184881701475e-25,2.7149289259887396e-15)
    sum e = 1.253816855929604e-09
    sum de = -1.9379364453608965e-10
Info: cfl dt = 0.0010310612384671176 cfl multiplier : 0.4130434782608696       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4820e+04 | 11520 |      1 | 4.641e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.30327694043899 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8375816325154342, dt = 0.0010310612384671176 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (2.1%)
   patch tree reduce : 1.95 us    (0.7%)
   gen split merge   : 991.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.5%)
   LB compute        : 260.77 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2624131944444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.924743953655427e-27,-1.2135184830169706e-27,2.6549757560126285e-16)
    sum a = (-1.6003465690547916e-25,3.344484676760097e-25,2.7322743620015047e-15)
    sum e = 1.2536194284028234e-09
    sum de = -1.9395472339965203e-10
Info: cfl dt = 0.0015158475963828284 cfl multiplier : 0.6086956521739131       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7708e+04 | 11520 |      1 | 3.055e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.149647489278033 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8386126937539012, dt = 0.0015158475963828284 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.9%)
   patch tree reduce : 1.68 us    (0.6%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.5%)
   LB compute        : 281.95 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2702256944444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.859621445133103e-27,-9.541722472179151e-28,2.6964822922608853e-16)
    sum a = (-7.642253998647674e-26,-1.2071388429919671e-25,2.7613096661213713e-15)
    sum e = 1.253328039956409e-09
    sum de = -1.9416773221440648e-10
Info: cfl dt = 0.001835573489068766 cfl multiplier : 0.7391304347826088        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1992e+04 | 11520 |      1 | 3.601e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.154822641250231 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.840128541350284, dt = 0.001835573489068766 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.8%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 291.60 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2816840277777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.848526419002662e-27,-1.2814755180659209e-27,2.7473882259832246e-16)
    sum a = (-3.852193072489072e-26,-1.601234171145227e-25,2.802943160067045e-15)
    sum e = 1.252973825250455e-09
    sum de = -1.9439531599334348e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011419773067621597
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.136997098394125e-27,-1.927760790164102e-27,2.7477703326297107e-16)
    sum a = (-8.955905092491874e-26,-2.361021560557818e-25,2.8027521065744473e-15)
    sum e = 1.2529662938693678e-09
    sum de = -1.943122496652894e-10
Info: cfl dt = 0.001024217278196048 cfl multiplier : 0.4130434782608696        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4671e+04 | 11520 |      1 | 4.669e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.151782848615285 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8419641148393529, dt = 0.001024217278196048 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.3%)
   patch tree reduce : 1.87 us    (0.7%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.5%)
   LB compute        : 257.72 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.295920138888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.970571706437512e-27,-2.0609011037293925e-27,2.776474850547654e-16)
    sum a = (-7.239282649590062e-25,-1.3740080359937978e-25,2.8295785454444478e-15)
    sum e = 1.252769606156493e-09
    sum de = -1.944445495288859e-10
Info: cfl dt = 0.001507921588446837 cfl multiplier : 0.6086956521739131        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7757e+04 | 11520 |      1 | 3.051e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.084643720161644 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8429883321175489, dt = 0.001507921588446837 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (2.0%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 281.30 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.3039930555555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.661358623045488e-27,-2.1413400431750887e-27,2.819280056751726e-16)
    sum a = (-3.28767814297224e-25,7.704386144978144e-26,2.8742632125246275e-15)
    sum e = 1.2524789948072464e-09
    sum de = -1.9462190661335233e-10
Info: cfl dt = 0.0018299046759426424 cfl multiplier : 0.7391304347826088       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7766e+04 | 11520 |      1 | 3.050e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.79611190599442 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8444962537059957, dt = 0.0018299046759426424 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.8%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 312.25 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.3154513888888886
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.084417264262563e-27,-1.6087787889139268e-27,2.872213238540406e-16)
    sum a = (2.7267136218171492e-25,4.686539037498225e-26,2.937893179425176e-15)
    sum e = 1.2521250823304295e-09
    sum de = -1.9481691426514235e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.0108408088993044
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.2161099295675324e-27,-2.5019283924144172e-27,2.872795422428626e-16)
    sum a = (3.071103232906034e-25,-5.219100291759388e-26,2.9376020874317153e-15)
    sum e = 1.2521176623817391e-09
    sum de = -1.947390915183281e-10
Info: cfl dt = 0.0010240777800020525 cfl multiplier : 0.4130434782608696       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4424e+04 | 11520 |      1 | 4.717e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.966855953416845 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8463261583819384, dt = 0.0010240777800020525 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (1.7%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 348.85 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (71.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.3407118055555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.9942094069587145e-27,-2.069222373327223e-27,2.902876089378216e-16)
    sum a = (2.3201918643977957e-25,2.4355801361543807e-25,2.978370750162235e-15)
    sum e = 1.2519205492035063e-09
    sum de = -1.948573526057842e-10
Info: cfl dt = 0.0015105793250775263 cfl multiplier : 0.6086956521739131       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7686e+04 | 11520 |      1 | 3.057e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.060537375692164 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8473502361619404, dt = 0.0015105793250775263 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (2.2%)
   patch tree reduce : 1.67 us    (0.6%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 267.05 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.402256944444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.415820399915468e-27,-1.8473218507184054e-27,2.948075493505958e-16)
    sum a = (-1.2089140471728376e-25,-2.0769888916185316e-25,3.0458935342851556e-15)
    sum e = 1.2516288254327445e-09
    sum de = -1.950213857837068e-10
Info: cfl dt = 0.0018386622585161818 cfl multiplier : 0.7391304347826088       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3827e+04 | 11520 |      1 | 3.406e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.9680828073277 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.8488608154870179, dt = 0.0018386622585161818 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (2.1%)
   patch tree reduce : 1.65 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.5%)
   LB compute        : 264.57 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.4235243055555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.661358623045488e-27,-1.691991484892233e-27,3.00458918101305e-16)
    sum a = (-4.655472964332991e-25,-1.075773733607547e-25,3.1413591760173765e-15)
    sum e = 1.2512725587381252e-09
    sum de = -1.9521242196848246e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011821143643929844
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.528218309480198e-27,-1.8584168768488466e-27,3.00546682633295e-16)
    sum a = (-7.637815988195498e-25,-1.4183881405155615e-25,3.1409203534832884e-15)
    sum e = 1.2512650575218292e-09
    sum de = -1.9513875702636737e-10
Info: cfl dt = 0.001030101613274761 cfl multiplier : 0.4130434782608696        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4848e+04 | 11520 |      1 | 4.636e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.277129731869232 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.850699477745534, dt = 0.001030101613274761 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (1.9%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 302.91 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.450173611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3077654351317017e-27,-2.945729437632052e-27,3.0378174632324515e-16)
    sum a = (2.673457496391033e-25,-1.3314031356529048e-25,3.2016335882581948e-15)
    sum e = 1.251066388080954e-09
    sum de = -1.952594792934639e-10
Info: cfl dt = 0.0015194418342390163 cfl multiplier : 0.6086956521739131       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7474e+04 | 11520 |      1 | 3.074e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.063053410084756 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8517295793588088, dt = 0.0015194418342390163 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.9%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 312.06 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.463888888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.949829302436951e-27,-2.524118444675299e-27,3.0867771274402607e-16)
    sum a = (-1.9056816881645244e-25,1.180510780278909e-25,3.301478295837622e-15)
    sum e = 1.250772384297494e-09
    sum de = -1.9543478475355506e-10
Info: cfl dt = 0.0018486684132490482 cfl multiplier : 0.7391304347826088       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7653e+04 | 11520 |      1 | 3.060e-01 | 0.1% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.878698175882835 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8532490211930478, dt = 0.0018486684132490482 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.9%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.5%)
   LB compute        : 296.32 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.4846354166666664
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2397476300887356e-27,-2.424263209501331e-27,3.1485690549574836e-16)
    sum a = (-5.030041046496675e-25,-2.8580787312015693e-25,3.4413287274845723e-15)
    sum e = 1.2504134637094043e-09
    sum de = -1.9565165399511214e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01212862029153185
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3521455396534654e-27,-2.8347791763276434e-27,3.1498617403307624e-16)
    sum a = (-3.8548558787603775e-25,-2.919323275441603e-25,3.4406823848258034e-15)
    sum e = 1.2504057745022245e-09
    sum de = -1.9558161185142067e-10
Info: cfl dt = 0.0010336974089128791 cfl multiplier : 0.4130434782608696       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4684e+04 | 11520 |      1 | 4.667e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.26026580773639 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8550976896062968, dt = 0.0010336974089128791 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.3%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.5%)
   LB compute        : 269.06 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (48.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.5058159722222224
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.130245017044648e-27,-2.4908333662839764e-27,3.1854220106800727e-16)
    sum a = (4.015511857129161e-25,2.4579920889378714e-25,3.5287661321513107e-15)
    sum e = 1.250205985188668e-09
    sum de = -1.957217785593811e-10
Info: cfl dt = 0.0015234711115599592 cfl multiplier : 0.6086956521739131       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7528e+04 | 11520 |      1 | 3.070e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.122604661519413 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8561313870152097, dt = 0.0015234711115599592 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.0%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 293.38 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.5190972222222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.705738727567252e-27,-1.7752041808705397e-27,3.239637003019329e-16)
    sum a = (-3.2379724259078647e-25,-2.0845335093872312e-25,3.672496311965678e-15)
    sum e = 1.2499105408479602e-09
    sum de = -1.959336398319879e-10
Info: cfl dt = 0.0018524233267237515 cfl multiplier : 0.7391304347826088       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6751e+04 | 11520 |      1 | 3.135e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.49652478349962 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8576548581267697, dt = 0.0018524233267237515 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.9%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.5%)
   LB compute        : 285.30 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.5426215277777775
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9734670029581544e-27,-3.389530482849687e-27,3.30876202528722e-16)
    sum a = (6.771294447408066e-26,-2.374335591914347e-25,3.871790538936662e-15)
    sum e = 1.2495499940338818e-09
    sum de = -1.962076455473717e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01083474122773139
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.395077995914908e-27,-3.0788697511973426e-27,3.310607911560496e-16)
    sum a = (2.6605872660797217e-25,-2.4719718218622267e-25,3.870867595789195e-15)
    sum e = 1.2495420838126138e-09
    sum de = -1.9614108232190579e-10
Info: cfl dt = 0.0010398624949028816 cfl multiplier : 0.4130434782608696       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4606e+04 | 11520 |      1 | 4.682e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.243702985089191 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8595072814534934, dt = 0.0010398624949028816 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.30 us    (2.2%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 307.16 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.577864583333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2397476300887356e-27,-2.8125891240667617e-27,3.3508510635811154e-16)
    sum a = (1.3003370624876705e-25,8.929277029778815e-26,3.995851772815234e-15)
    sum e = 1.249340575889538e-09
    sum de = -1.9631911725080853e-10
Info: cfl dt = 0.001536496803789324 cfl multiplier : 0.6086956521739131        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7131e+04 | 11520 |      1 | 3.103e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.065989168428551 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8605471439483963, dt = 0.001536496803789324 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.9%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1.36 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 287.78 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.64296875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.084417264262563e-27,-3.0511321858712405e-27,3.4128970302298734e-16)
    sum a = (3.17317747330609e-25,-1.3029998687589763e-25,4.19890350582375e-15)
    sum e = 1.2490417571920552e-09
    sum de = -1.965953730172447e-10
Info: cfl dt = 0.0018447694528885908 cfl multiplier : 0.7391304347826088       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7136e+04 | 11520 |      1 | 3.102e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.83118002214072 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8620836407521856, dt = 0.0018447694528885908 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (2.1%)
   patch tree reduce : 1.69 us    (0.6%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 273.62 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.6734375000000004
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.393630347654586e-27,-3.611431005458504e-27,3.4919170610363125e-16)
    sum a = (-4.8285553719678683e-26,1.7645529557853166e-25,4.474038643177772e-15)
    sum e = 1.2486813189831278e-09
    sum de = -1.969527030674678e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010240412666062614
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.972019354697833e-27,-2.9845620290885952e-27,3.4944548655294577e-16)
    sum a = (1.841774337653185e-25,-1.469869061760807e-25,4.472769741273281e-15)
    sum e = 1.2486732622566776e-09
    sum de = -1.9688903631187689e-10
Info: cfl dt = 0.001005706869357414 cfl multiplier : 0.4130434782608696        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4624e+04 | 11520 |      1 | 4.678e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.195248622449931 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8639284102050742, dt = 0.001005706869357414 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.0%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.59 us    (0.5%)
   LB compute        : 303.89 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.7744791666666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.349250243132823e-27,-4.005304433089155e-27,3.539426113900875e-16)
    sum a = (2.4968246803944144e-25,-9.408582158613861e-26,4.638582686635032e-15)
    sum e = 1.248477582366945e-09
    sum de = -1.9711070638443486e-10
Info: cfl dt = 0.0014627350197578316 cfl multiplier : 0.6086956521739131       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4542e+04 | 11520 |      1 | 3.335e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.856068619217124 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8649341170744316, dt = 0.0014627350197578316 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.7%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.57 us    (0.5%)
   LB compute        : 309.62 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (53.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.7982638888888887
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.7264811315678125e-27,-3.511575770284537e-27,3.6081100834840103e-16)
    sum a = (2.291788597503867e-25,1.7006456052739773e-25,4.900670048477805e-15)
    sum e = 1.248191745783668e-09
    sum de = -1.9744861995360763e-10
Info: cfl dt = 0.0017439085574928422 cfl multiplier : 0.7391304347826088       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6785e+04 | 11520 |      1 | 3.132e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.81465803833486 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8663968520941894, dt = 0.0017439085574928422 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.7%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 311.09 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.833072916666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.304870138611059e-27,-2.8958018200450683e-27,3.69549010952901e-16)
    sum a = (2.256284513886456e-25,1.2213404764389314e-25,5.247785622868637e-15)
    sum e = 1.2478492695776547e-09
    sum de = -1.9787895570055642e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010250220600503714
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.214662281307211e-27,-3.383982969784466e-27,3.698516798662234e-16)
    sum a = (4.100721657810947e-26,-3.0426999660121055e-25,5.24627227887151e-15)
    sum e = 1.2478419349268178e-09
    sum de = -1.9782154010548999e-10
Info: cfl dt = 0.0009551154669488366 cfl multiplier : 0.4130434782608696       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.3754e+04 | 11520 |      1 | 4.850e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.94534322866484 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8681407606516822, dt = 0.0009551154669488366 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.8%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.40 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 316.08 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.9215277777777775
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.81524134061134e-27,-3.9331867632412896e-27,3.748611560893552e-16)
    sum a = (1.0065407705535961e-25,-8.520980068178592e-26,5.45365107048422e-15)
    sum e = 1.247655112921675e-09
    sum de = -1.9808230480241143e-10
Info: cfl dt = 0.0013924544217169283 cfl multiplier : 0.6086956521739131       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6719e+04 | 11520 |      1 | 3.137e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.959740804254942 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.869095876118631, dt = 0.0013924544217169283 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (2.1%)
   patch tree reduce : 1.63 us    (0.6%)
   gen split merge   : 1.03 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 268.53 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.9432291666666663
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.81524134061134e-27,-2.8403266893928638e-27,3.8255415199014994e-16)
    sum a = (2.9645909820538017e-25,-1.7183976470826826e-25,5.778626115944627e-15)
    sum e = 1.247381516287592e-09
    sum de = -1.9847663325008869e-10
Info: cfl dt = 0.0016657820566583577 cfl multiplier : 0.7391304347826088       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6533e+04 | 11520 |      1 | 3.153e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.897021168526136 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.870488330540348, dt = 0.0016657820566583577 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.8%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 1.58 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.5%)
   LB compute        : 303.65 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.975868055555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.57115076574164e-27,-4.512901878556825e-27,3.924063401622392e-16)
    sum a = (1.7432505056148703e-25,-1.157433125927592e-25,6.2045187444472936e-15)
    sum e = 1.2470525264517176e-09
    sum de = -1.989715492133841e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01100810692083362
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.992761758698394e-27,-4.302096382078449e-27,3.927610623004447e-16)
    sum a = (2.7338144385406316e-26,-7.491361643273679e-26,6.2027451334695706e-15)
    sum e = 1.2470458036976353e-09
    sum de = -1.98916740061022e-10
Info: cfl dt = 0.0009159708197304167 cfl multiplier : 0.4130434782608696       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.2488e+04 | 11520 |      1 | 5.123e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.706067216468371 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8721541125970064, dt = 0.0009159708197304167 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.83 us    (2.0%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 319.86 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (72.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.0173611111111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.4032777255247056e-27,-4.3825353215241455e-27,3.984411186244533e-16)
    sum a = (-1.2284412931624135e-25,-4.9705717064375114e-26,6.4552843745498454e-15)
    sum e = 1.2468655416862392e-09
    sum de = -1.992101442376494e-10
Info: cfl dt = 0.0013381642008310952 cfl multiplier : 0.6086956521739131       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5943e+04 | 11520 |      1 | 3.205e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.28840141890455 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8730700834167368, dt = 0.0013381642008310952 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (1.8%)
   patch tree reduce : 1.89 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 326.27 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.0386284722222228
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.669558352655287e-27,-4.8263363667417806e-27,4.0719500837492243e-16)
    sum a = (-3.2166699757374183e-25,1.647389479847861e-25,6.84807748830539e-15)
    sum e = 1.246600966153081e-09
    sum de = -1.996485251411059e-10
Info: cfl dt = 0.0016055622339721256 cfl multiplier : 0.7391304347826088       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5703e+04 | 11520 |      1 | 3.227e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.929966594120966 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8744082476175679, dt = 0.0016055622339721256 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (2.0%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 298.00 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.0758680555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.082969616002242e-27,-3.765374493018372e-27,4.184528338011752e-16)
    sum a = (4.260490034089296e-27,1.6331878464008966e-25,7.358103857706935e-15)
    sum e = 1.2462818550077394e-09
    sum de = -2.0018929769721618e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010694154637513557
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.149539772784887e-27,-4.110707181328344e-27,4.188622733351346e-16)
    sum a = (2.002430316021969e-25,-1.3491551774616102e-26,7.356056660040156e-15)
    sum e = 1.2462756735820946e-09
    sum de = -2.0013476147766926e-10
Info: cfl dt = 0.0008858341742226381 cfl multiplier : 0.4130434782608696       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4041e+04 | 11520 |      1 | 4.792e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.062469429279387 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.87601380985154, dt = 0.0008858341742226381 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (2.0%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 300.71 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.18046875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.7930512883504574e-27,-4.471988969700825e-27,4.2537687626447455e-16)
    sum a = (6.816784054542873e-26,-9.231061740526808e-26,7.656441469678647e-15)
    sum e = 1.2461001689697077e-09
    sum de = -2.0044961647096976e-10
Info: cfl dt = 0.001296433744026892 cfl multiplier : 0.6086956521739131        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3584e+04 | 11520 |      1 | 3.430e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.29678835244857 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.8768996440257626, dt = 0.001296433744026892 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (1.8%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 19.06 us   (5.5%)
   LB compute        : 310.08 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2035590277777772
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.759766209959135e-27,-4.603048965866658e-27,4.3543599090065774e-16)
    sum a = (-4.1539777832370634e-26,-5.7552119543822905e-25,8.120544400537382e-15)
    sum e = 1.245842108316483e-09
    sum de = -2.009140893440538e-10
Info: cfl dt = 0.0015593736767392007 cfl multiplier : 0.7391304347826088       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4271e+04 | 11520 |      1 | 3.361e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.884557508844958 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8781960777697895, dt = 0.0015593736767392007 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (1.9%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 308.20 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.242708333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.393630347654586e-27,-5.5877325349432856e-27,4.483997934320142e-16)
    sum a = (-5.961135639363273e-25,4.984773339884476e-25,8.7182304036962e-15)
    sum e = 1.2455300874482778e-09
    sum de = -2.0147743612908402e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010185580354132608
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.071874589871801e-27,-4.874877106062459e-27,4.488658013468896e-16)
    sum a = (-2.272261351514291e-26,4.817904146882645e-25,8.715900364173127e-15)
    sum e = 1.24552439413682e-09
    sum de = -2.014217591509155e-10
Info: cfl dt = 0.0008627485428936146 cfl multiplier : 0.4130434782608696       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.3625e+04 | 11520 |      1 | 4.876e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.512486331272846 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8797554514465287, dt = 0.0008627485428936146 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.8%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 300.76 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.327430555555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.1606347989153276e-27,-4.2306721513637356e-27,4.563836149890132e-16)
    sum a = (-4.0900704327257236e-25,-2.634403004411881e-25,9.065811398728327e-15)
    sum e = 1.2453522592454872e-09
    sum de = -2.0174459996311898e-10
Info: cfl dt = 0.001264516867641357 cfl multiplier : 0.6086956521739131        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2957e+04 | 11520 |      1 | 3.495e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.88555341926412 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.8806181999894223, dt = 0.001264516867641357 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (2.0%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 264.27 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.359375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.349250243132823e-27,-5.038528741486462e-27,4.679984290336931e-16)
    sum a = (-2.229656451173398e-25,3.585912445358491e-25,9.603222666153532e-15)
    sum e = 1.2450987983740096e-09
    sum de = -2.0221414684142158e-10
Info: cfl dt = 0.0015241231903679617 cfl multiplier : 0.7391304347826088       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3657e+04 | 11520 |      1 | 3.423e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.300101122628105 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8818827168570637, dt = 0.0015241231903679617 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (2.0%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 290.96 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3922743055555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.073322238132122e-27,-4.180051094643599e-27,4.829747062204764e-16)
    sum a = (2.680558313114515e-25,-3.4545473359740707e-25,1.0290140296214725e-14)
    sum e = 1.2447917595848678e-09
    sum de = -2.0277220630444593e-10
Info: cfl dt = 0.001689633328034996 cfl multiplier : 0.8260869565217392        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4869e+04 | 11520 |      1 | 3.304e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.607895534987662 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8834068400474316, dt = 0.001689633328034996 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.7%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 316.55 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.436197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.716833753697693e-27,-4.8374313928722214e-27,5.008847437520702e-16)
    sum a = (7.530416135252831e-25,4.402506368558939e-26,1.1101945811018205e-14)
    sum e = 1.24444972658719e-09
    sum de = -2.0337682861579107e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012119253124553371
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.415820399915468e-27,-4.720933618502592e-27,5.015705705728829e-16)
    sum a = (3.5433075450175976e-25,-4.246288400642331e-25,1.1098516676796977e-14)
    sum e = 1.2444433864124417e-09
    sum de = -2.0330311859509993e-10
Info: cfl dt = 0.0008972730016904541 cfl multiplier : 0.4420289855072464       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.3537e+04 | 11520 |      1 | 4.894e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.427866909543999 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8850964733754666, dt = 0.0008972730016904541 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.8%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 305.64 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.55859375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.8263363667417806e-27,-5.5114542302965045e-27,5.115260729580367e-16)
    sum a = (-3.642718979146348e-25,-6.781279970925462e-26,1.1551650059368813e-14)
    sum e = 1.2442626628272056e-09
    sum de = -2.0363231182359008e-10
Info: cfl dt = 0.0012697173812104615 cfl multiplier : 0.6280193236714976       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4144e+04 | 11520 |      1 | 3.374e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.573875777934925 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.885993746377157, dt = 0.0012697173812104615 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (1.8%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.4%)
   LB compute        : 321.62 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.639930555555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.528218309480198e-27,-5.436562803916028e-27,5.263966959992655e-16)
    sum a = (1.2710461935033065e-25,2.392975235813488e-25,1.2217770701080786e-14)
    sum e = 1.2440055392861207e-09
    sum de = -2.0407977145809336e-10
Info: cfl dt = 0.0015125413471866176 cfl multiplier : 0.7520128824476652       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4040e+04 | 11520 |      1 | 3.384e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.50678478691273 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8872634637583675, dt = 0.0015125413471866176 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (2.0%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.5%)
   LB compute        : 299.28 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.6820312500000005
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.861069093393424e-27,-5.0759744546767e-27,5.452994718299043e-16)
    sum a = (4.047465532384831e-26,1.8621891857331962e-25,1.3049061857407923e-14)
    sum e = 1.243697838479847e-09
    sum de = -2.0458752771214857e-10
Info: cfl dt = 0.0016695675006953745 cfl multiplier : 0.8346752549651102       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3878e+04 | 11520 |      1 | 3.400e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.01319633012695 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8887760051055541, dt = 0.0016695675006953745 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.44 us    (1.8%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.3%)
   LB compute        : 332.61 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.71875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.960924328567392e-27,-4.6099833571981834e-27,5.677144425432269e-16)
    sum a = (-3.866394705936036e-25,-2.156873079757706e-25,1.4013326626682516e-14)
    sum e = 1.2433567461185442e-09
    sum de = -2.0511316702620736e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010771245412143552
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.395077995914908e-27,-4.504580608958995e-27,5.685193951032807e-16)
    sum a = (-6.660566086626266e-25,9.976647496492435e-26,1.4009301864517415e-14)
    sum e = 1.2433509845101945e-09
    sum de = -2.0503451103638834e-10
Info: cfl dt = 0.0008855104377975194 cfl multiplier : 0.44489175165503675      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.2225e+04 | 11520 |      1 | 5.183e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.595446811959231 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8904455726062495, dt = 0.0008855104377975194 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (2.2%)
   patch tree reduce : 1.44 us    (0.5%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 270.36 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.765190972222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8736117677841863e-27,-4.765313723024356e-27,5.809214183279593e-16)
    sum a = (-2.485285853218756e-27,-2.130245017044648e-25,1.454079174084284e-14)
    sum e = 1.2431709771973158e-09
    sum de = -2.0531414709705975e-10
Info: cfl dt = 0.001250518627781843 cfl multiplier : 0.6299278344366912        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3557e+04 | 11520 |      1 | 3.433e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.286009445509427 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.891331083044047, dt = 0.001250518627781843 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (2.1%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 288.40 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.7920138888888886
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2064625516974128e-27,-4.970571706437512e-27,5.993402691732528e-16)
    sum a = (2.7018607632849616e-25,-7.189576932525686e-26,1.531316334500077e-14)
    sum e = 1.2429155240968192e-09
    sum de = -2.0568031472173178e-10
Info: cfl dt = 0.0014904215301814808 cfl multiplier : 0.7532852229577941       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3924e+04 | 11520 |      1 | 3.396e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.257205572510921 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8925816016718288, dt = 0.0014904215301814808 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (2.1%)
   patch tree reduce : 2.28 us    (0.8%)
   gen split merge   : 1.09 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 270.97 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.8289062499999997
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.1051596682631235e-27,-4.671006000915608e-27,6.226462700612004e-16)
    sum a = (3.703075921295946e-25,-4.5081310173207365e-25,1.6266186590217492e-14)
    sum e = 1.2426098811209354e-09
    sum de = -2.0607724004213385e-10
Info: cfl dt = 0.0015194276757853993 cfl multiplier : 0.8355234819718627       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3320e+04 | 11520 |      1 | 3.457e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.519097597032653 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8940720232020103, dt = 0.0015194276757853993 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (2.3%)
   patch tree reduce : 1.65 us    (0.6%)
   gen split merge   : 1.34 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 266.79 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (60.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.875260416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.0385895114804785e-27,-5.092616993872361e-27,6.480717673299733e-16)
    sum a = (-2.133795425406389e-25,1.147669502932804e-25,1.7271743737875326e-14)
    sum e = 1.2422965261928839e-09
    sum de = -2.0642526927041776e-10
Info: cfl dt = 0.0016166317910864872 cfl multiplier : 0.8903489879812417       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3632e+04 | 11520 |      1 | 3.425e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.969022396218476 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8955914508777957, dt = 0.0016166317910864872 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.3%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.5%)
   LB compute        : 266.77 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.985763888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.42836307430623e-27,-5.247947359698533e-27,6.767577530260601e-16)
    sum a = (-1.0225176081814309e-25,-2.570273753377933e-25,1.8378110527166797e-14)
    sum e = 1.2419629808279701e-09
    sum de = -2.0675325396551964e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010493510330487885
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.4228155612410096e-27,-5.392182699394265e-27,6.776520468821505e-16)
    sum a = (8.929277029778815e-26,-2.012193939016757e-25,1.8373639057848533e-14)
    sum e = 1.2419581870327089e-09
    sum de = -2.0667450285235e-10
Info: cfl dt = 0.0008412889813255705 cfl multiplier : 0.4634496626604139       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.1841e+04 | 11520 |      1 | 5.275e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.033857053217302 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8972080826688822, dt = 0.0008412889813255705 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.1%)
   patch tree reduce : 2.34 us    (0.7%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 293.96 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (62.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.081510416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.561503387871521e-27,-5.4532053431116896e-27,6.931059726146841e-16)
    sum a = (-9.56835053489221e-26,1.4335883263142654e-25,1.896386841711337e-14)
    sum e = 1.2417855972149862e-09
    sum de = -2.0684069267233627e-10
Info: cfl dt = 0.0011657905422308376 cfl multiplier : 0.6422997751069426       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3165e+04 | 11520 |      1 | 3.474e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.719160698918492 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8980493716502077, dt = 0.0011657905422308376 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.7%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 1.24 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 335.05 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.115798611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.328507839132262e-27,-5.369992647133383e-27,7.154621477890619e-16)
    sum a = (3.6941999003915936e-25,-1.777645086619237e-25,1.9795521596637225e-14)
    sum e = 1.2415454655872774e-09
    sum de = -2.0703484345708002e-10
Info: cfl dt = 0.0013822457194862963 cfl multiplier : 0.7615331834046284       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1435e+04 | 11520 |      1 | 3.665e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.452166581626406 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8992151621924386, dt = 0.0007848378075614448 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (2.0%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 299.42 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.15
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.121802207458785e-27,-5.4032777255247056e-27,7.314831882578725e-16)
    sum a = (3.546857953379339e-25,1.4578864335399309e-25,2.0361971759273014e-14)
    sum e = 1.2413815953683076e-09
    sum de = -2.0711183314436477e-10
Info: cfl dt = 0.0015268831530673049 cfl multiplier : 0.8410221222697523       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3263e+04 | 11520 |      1 | 3.463e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.158174203344787 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 432                                                     [SPH][rank=0]
Info: time since start : 178.93976454 (s)                                             [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[0. 0. 0. ... 0. 0. 0.]
(11520, 3)
[[0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 ...
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]]
compute original rho
Info: Dumping state to _to_trash/dusty_settle/dump/0000009.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.24 us   (70.7%)
Info: dump to _to_trash/dusty_settle/dump/0000009.sham                      [Shamrock Dump][rank=0]
              - took 1.26 ms, bandwidth = 2.34 GB/s
Info: evolve_until (target_time = 1.00s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.9, dt = 0.0015268831530673049 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.30 us    (0.9%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 341.12 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.1767361111111105
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.371440295393705e-27,-5.020499324024495e-27,7.627958256503842e-16)
    sum a = (3.735029596551616e-25,7.029808556247338e-26,2.1488220382436413e-14)
    sum e = 1.2410681103731854e-09
    sum de = -2.0731648380376262e-10
Info: cfl dt = 0.0016238323754353533 cfl multiplier : 0.8940147481798348       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8083e+04 | 11520 |      1 | 4.102e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.399718952569758 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9015268831530673, dt = 0.0016238323754353533 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.8%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 299.87 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.217274305555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.720933618502592e-27,-5.381087673263824e-27,7.985489186236769e-16)
    sum a = (5.645149295168316e-26,-3.8379914390421074e-25,2.2706750158587346e-14)
    sum e = 1.2407316936449525e-09
    sum de = -2.0742221680571042e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010480023175315104
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.970571706437512e-27,-5.497585447633453e-27,7.995382626790719e-16)
    sum a = (-3.1705146670347843e-25,-1.095300979597123e-25,2.2701803438607005e-14)
    sum e = 1.240727431610251e-09
    sum de = -2.0734083990951947e-10
Info: cfl dt = 0.0008449435256298297 cfl multiplier : 0.46467158272661163      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.2712e+04 | 11520 |      1 | 5.072e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.525011304292994 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9031507155285027, dt = 0.0008449435256298297 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.8%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 1.54 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 320.06 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.287326388888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.4324629391111295e-27,-5.247947359698533e-27,8.187159881875778e-16)
    sum a = (3.6977503087533344e-25,-5.55638908612479e-26,2.334507819907086e-14)
    sum e = 1.2405534302484133e-09
    sum de = -2.073863959454501e-10
Info: cfl dt = 0.0011700907210289765 cfl multiplier : 0.6431143884844078       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2964e+04 | 11520 |      1 | 3.495e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.704068824574309 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9039956590541325, dt = 0.0011700907210289765 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.8%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 311.57 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.3421875000000005
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.159187150655007e-27,-4.898454036589646e-27,8.463036130005977e-16)
    sum a = (-1.9189957195210537e-25,-3.383539168739249e-25,2.4243290651753195e-14)
    sum e = 1.2403117354036976e-09
    sum de = -2.0740664107092092e-10
Info: cfl dt = 0.001389064645056163 cfl multiplier : 0.7620762589896053        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2813e+04 | 11520 |      1 | 3.511e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.998154078728582 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9051657497751615, dt = 0.001389064645056163 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (2.0%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.5%)
   LB compute        : 298.32 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.391059027777779
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.2105624165023116e-27,-5.311743759948568e-27,8.805046059472006e-16)
    sum a = (2.1657491006620586e-26,2.9645909820538013e-26,2.53193212415819e-14)
    sum e = 1.240024424167959e-09
    sum de = -2.073745920254792e-10
Info: cfl dt = 0.0016366548214731473 cfl multiplier : 0.8413841726597369       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2818e+04 | 11520 |      1 | 3.510e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.245834762087219 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9065548144202177, dt = 0.0016366548214731473 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (1.9%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 308.45 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.488888888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.193919877306651e-27,-5.550286821753047e-27,9.226909331677901e-16)
    sum a = (4.391855143473716e-25,2.577596470624024e-25,2.6598030106109046e-14)
    sum e = 1.2396860880342107e-09
    sum de = -2.0726896327380087e-10
Info: cfl dt = 0.0017390456363630602 cfl multiplier : 0.8942561151064913       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8034e+04 | 11520 |      1 | 4.109e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.338250741539762 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9081914692416908, dt = 0.0017390456363630602 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.9%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 298.19 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.540017361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.358897621002942e-27,-5.600214439340031e-27,9.699925238609877e-16)
    sum a = (-1.4716442659416776e-25,-4.3954055518354565e-25,2.796386512033836e-14)
    sum e = 1.2393261303917782e-09
    sum de = -2.0705698833948064e-10
Info: cfl dt = 0.0017500443435116903 cfl multiplier : 0.9295040767376609       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2463e+04 | 11520 |      1 | 3.549e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.64229289070921 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9099305148780539, dt = 0.0017500443435116903 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (2.1%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 282.93 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.584722222222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.465748017502452e-27,-5.955255275514139e-27,1.0201181525469558e-15)
    sum a = (1.6882191760078834e-25,4.01196144876742e-26,2.934087004192844e-14)
    sum e = 1.238963910758425e-09
    sum de = -2.0674348932038767e-10
Info: cfl dt = 0.001782913763059449 cfl multiplier : 0.9530027178251071        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2622e+04 | 11520 |      1 | 3.531e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.84054694967745 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9116805592215655, dt = 0.001782913763059449 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.44 us    (2.1%)
   patch tree reduce : 1.55 us    (0.5%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 284.06 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.628038194444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.669558352655287e-27,-5.58634565667698e-27,1.0736353034140929e-15)
    sum a = (-1.4219385488773025e-25,3.5859124453584903e-26,3.074174031806918e-14)
    sum e = 1.2385956471242957e-09
    sum de = -2.0633169202876683e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010196250574095816
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.737576157698253e-27,-6.0273729453620046e-27,1.074884118854874e-15)
    sum a = (-9.035789280631048e-26,8.449971900943769e-26,3.073549624042857e-14)
    sum e = 1.238591655973783e-09
    sum de = -2.0623734939013523e-10
Info: cfl dt = 0.0009056488816458453 cfl multiplier : 0.48433423927503566      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.1521e+04 | 11520 |      1 | 5.353e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.990751832020266 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.913463472984625, dt = 0.0009056488816458453 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.8%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 292.57 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.6715277777777775
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.809693827546119e-27,-5.5170017433617246e-27,1.102714120318276e-15)
    sum a = (-4.942168439543583e-25,-7.846402479447786e-26,3.1445979982278453e-14)
    sum e = 1.238406076646079e-09
    sum de = -2.0601502225188873e-10
Info: cfl dt = 0.0012267190635498937 cfl multiplier : 0.656222826183357        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2455e+04 | 11520 |      1 | 3.550e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.185329416514389 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9143691218662708, dt = 0.0012267190635498937 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (1.9%)
   patch tree reduce : 2.23 us    (0.7%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 318.88 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.697135416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.992761758698394e-27,-5.745836657302068e-27,1.1416112278440867e-15)
    sum a = (-3.5894628537202316e-25,-2.4249289110691577e-25,3.240315621704408e-14)
    sum e = 1.2381543521686538e-09
    sum de = -2.0566046252891284e-10
Info: cfl dt = 0.0014409678844183225 cfl multiplier : 0.7708152174555712       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9114e+04 | 11520 |      1 | 3.957e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.160962251147815 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9155958409298207, dt = 0.0014409678844183225 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (1.8%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 317.25 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.727951388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.517123283349757e-27,-6.436502033922012e-27,1.1888902284729397e-15)
    sum a = (6.101376769652045e-25,4.2959941177067065e-26,3.351859281729957e-14)
    sum e = 1.2378589405117247e-09
    sum de = -2.0517819275513194e-10
Info: cfl dt = 0.0015846090277560779 cfl multiplier : 0.8472101449703807       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0388e+04 | 11520 |      1 | 3.791e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.683653567724768 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.917036808814239, dt = 0.0015846090277560779 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.7%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 319.19 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.84 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.797222222222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.702843431046609e-27,-6.0419351671582085e-27,1.2428077474086546e-15)
    sum a = (-4.288893300983224e-25,5.574141127933495e-26,3.4731248627669785e-14)
    sum e = 1.2375346811768705e-09
    sum de = -2.0456875868174175e-10
Info: cfl dt = 0.0016817639451646702 cfl multiplier : 0.8981400966469204       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1127e+04 | 11520 |      1 | 3.701e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.413975654754182 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.918621417841995, dt = 0.0016817639451646702 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (1.9%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 308.76 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.932118055555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.3187389212741106e-27,-5.638353591663422e-27,1.302178301790855e-15)
    sum a = (1.64383907148612e-25,-1.6686919300183074e-26,3.5998690612478625e-14)
    sum e = 1.2371914832457371e-09
    sum de = -2.0383397658705975e-10
Info: cfl dt = 0.0017484219323758439 cfl multiplier : 0.9320933977646136       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9716e+04 | 11520 |      1 | 3.877e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.617443918776232 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9203031817871596, dt = 0.0017484219323758439 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (1.9%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.4%)
   LB compute        : 309.12 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.39 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.982465277777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.1758296898506676e-27,-6.076953843382413e-27,1.3661849711178853e-15)
    sum a = (-1.5852573335173921e-25,3.3480350851218384e-25,3.729099185315775e-14)
    sum e = 1.2368359494556624e-09
    sum de = -2.0297621884699237e-10
Info: cfl dt = 0.001795156931249587 cfl multiplier : 0.9547289318430758        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1065e+04 | 11520 |      1 | 3.708e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.97317411851935 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9220516037195355, dt = 0.001795156931249587 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (1.9%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 301.41 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.028732638888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.607209600665573e-27,-4.963637315105986e-27,1.4342578975318121e-15)
    sum a = (-3.9409532815325984e-26,1.5870325376982625e-25,3.858665318107076e-14)
    sum e = 1.2364724807145656e-09
    sum de = -2.0199792240238025e-10
Info: cfl dt = 0.001828953536678804 cfl multiplier : 0.9698192878953839        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1060e+04 | 11520 |      1 | 3.709e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.424192159610545 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9238467606507851, dt = 0.001828953536678804 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (2.0%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 293.04 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.07265625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.607209600665573e-27,-5.7389022659705425e-27,1.5059940510342046e-15)
    sum a = (-2.295339005865608e-25,-1.3136510938441996e-26,3.98698689490239e-14)
    sum e = 1.2361040188898116e-09
    sum de = -2.009013971352213e-10
Info: cfl dt = 0.001854423083040229 cfl multiplier : 0.9798795252635891        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0973e+04 | 11520 |      1 | 3.719e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.702330429811113 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9256757141874639, dt = 0.001854423083040229 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.2%)
   patch tree reduce : 1.99 us    (0.7%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 282.97 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.158940972222221
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.905449197915188e-27,-5.0704269416114794e-27,1.5811031273413558e-15)
    sum a = (-3.958705323341304e-26,-2.5917981040709884e-25,4.112867715512373e-14)
    sum e = 1.2357325411150798e-09
    sum de = -1.9968871192471366e-10
Info: cfl dt = 0.001874609457122165 cfl multiplier : 0.986586350175726         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0174e+04 | 11520 |      1 | 3.818e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.48623103599169 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.927530137270504, dt = 0.001874609457122165 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (2.0%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 298.37 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.20625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.229978712230583e-27,-5.96357654511197e-27,1.6593705159946196e-15)
    sum a = (1.7645529557853166e-25,2.3752231940047823e-25,4.2353718640681194e-14)
    sum e = 1.2353593886589681e-09
    sum de = -1.9836172718540082e-10
Info: cfl dt = 0.001891521848698904 cfl multiplier : 0.9910575667838174        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0774e+04 | 11520 |      1 | 3.743e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.027981478012602 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9294047467276262, dt = 0.001891521848698904 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (1.9%)
   patch tree reduce : 2.18 us    (0.6%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 324.10 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.250347222222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.479616800165503e-27,-5.092616993872361e-27,1.740631737356832e-15)
    sum a = (8.425119042411582e-25,-5.329162950973361e-25,4.3537395391265623e-14)
    sum e = 1.2349854844676199e-09
    sum de = -1.9692214377836406e-10
Info: cfl dt = 0.0019064864543441 cfl multiplier : 0.9940383778558782          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9569e+04 | 11520 |      1 | 3.896e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.478182427693845 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9312962685763251, dt = 0.0019064864543441 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (1.9%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 322.08 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.299045138888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.064757888558226e-27,-6.2548209810360426e-27,1.824754667138516e-15)
    sum a = (-3.4243688648992713e-25,-3.209569159013936e-25,4.467331698715967e-14)
    sum e = 1.2346114777040096e-09
    sum de = -1.9537163860838655e-10
Info: cfl dt = 0.0019166789835010141 cfl multiplier : 0.9960255852372523       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8198e+04 | 11520 |      1 | 4.085e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.799990938404118 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9332027550306692, dt = 0.0019166789835010141 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.8%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 320.55 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.53 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (72.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3967881944444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.436562803916028e-27,-7.372644863677961e-27,1.9114618845083525e-15)
    sum a = (7.810898395830376e-27,1.11837863394844e-25,4.5753875109175614e-14)
    sum e = 1.2342385436962228e-09
    sum de = -1.9371489145712488e-10
Info: cfl dt = 0.0019116021780088014 cfl multiplier : 0.9973503901581683       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0471e+04 | 11520 |      1 | 3.781e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.250686053040585 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9351194340141702, dt = 0.0019116021780088014 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (2.2%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1.74 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 272.33 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.447222222222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.3450288383398914e-27,-6.568255469220998e-27,1.9999606333379692e-15)
    sum a = (4.6510349538808146e-26,4.725593529477377e-25,4.67668412104792e-14)
    sum e = 1.2338698230505038e-09
    sum de = -1.9196722528244584e-10
Info: cfl dt = 0.0019061500779850532 cfl multiplier : 0.9982335934387789       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0621e+04 | 11520 |      1 | 3.762e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.29235990235496 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.937031036192179, dt = 0.0019061500779850532 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.81 us    (2.2%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 285.26 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.487239583333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.5970939632408445e-27,-5.6806533787857276e-27,2.090073445464545e-15)
    sum a = (-2.978792615500766e-25,-2.318416660216925e-25,4.7709615225211356e-14)
    sum e = 1.2335055808691408e-09
    sum de = -1.9013483333467786e-10
Info: cfl dt = 0.0018997120926561117 cfl multiplier : 0.9988223956258526       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0541e+04 | 11520 |      1 | 3.772e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.192118536705824 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.938937186270164, dt = 0.0018997120926561117 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (2.1%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 1.36 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.5%)
   LB compute        : 266.37 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.533593750000001
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.445985002207604e-27,-6.440662668720927e-27,2.181606512825001e-15)
    sum a = (5.355791013686419e-25,3.195367525566972e-25,4.8579613382935866e-14)
    sum e = 1.2331461350697624e-09
    sum de = -1.8822332658724288e-10
Info: cfl dt = 0.0018941818833833994 cfl multiplier : 0.9992149304172351       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7724e+04 | 11520 |      1 | 4.155e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.458838489030818 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9408368983628201, dt = 0.0018941818833833994 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (2.1%)
   patch tree reduce : 1.74 us    (0.6%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 269.18 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.5660590277777775
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.267302885432789e-27,-5.6806533787857276e-27,2.2744515094006565e-15)
    sum a = (1.8000570394027275e-25,-2.478185036495274e-25,4.937547883807206e-14)
    sum e = 1.232791440038799e-09
    sum de = -1.8623678673170741e-10
Info: cfl dt = 0.001889651909224073 cfl multiplier : 0.9994766202781568        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0344e+04 | 11520 |      1 | 3.796e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.961799077221468 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9427310802462036, dt = 0.001889651909224073 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.8%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.4%)
   LB compute        : 309.14 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (55.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.603385416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.1410969631990236e-27,-6.568255469220998e-27,2.3685077342197743e-15)
    sum a = (1.196487617906744e-25,1.87461561499929e-25,5.009602174187939e-14)
    sum e = 1.232441424237252e-09
    sum de = -1.8417890494291997e-10
Info: cfl dt = 0.0018847937415066873 cfl multiplier : 0.9996510801854379       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8909e+04 | 11520 |      1 | 3.985e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.071380827410934 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9446207321554276, dt = 0.0018847937415066873 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (2.0%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.5%)
   LB compute        : 274.40 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.666145833333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.437888912188317e-27,-5.2978749772855174e-27,2.4636091901088785e-15)
    sum a = (-6.568255469220998e-26,7.171824890716981e-26,5.073972039245694e-14)
    sum e = 1.23209625335277e-09
    sum de = -1.8205456398455486e-10
Info: cfl dt = 0.0018809966993432522 cfl multiplier : 0.999767386790292        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9832e+04 | 11520 |      1 | 3.862e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.57120324459281 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9465055258969344, dt = 0.0018809966993432522 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.8%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 315.62 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.726388888888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.557160443090556e-27,-5.702843431046609e-27,2.559657056291847e-15)
    sum a = (1.1521075133849803e-25,1.7468009139766113e-25,5.1305749528271004e-14)
    sum e = 1.2317558379428738e-09
    sum de = -1.7986714481086618e-10
Info: cfl dt = 0.0018783868706047533 cfl multiplier : 0.9998449245268614       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9670e+04 | 11520 |      1 | 3.883e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.440348070449122 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9483865225962776, dt = 0.0018783868706047533 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.1%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 284.30 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.762239583333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.514167216835098e-27,-5.281232438089856e-27,2.6565614520566153e-15)
    sum a = (-1.4290393656007847e-26,1.4592178366755838e-25,5.1793361691159775e-14)
    sum e = 1.2314200636628589e-09
    sum de = -1.7761944065306697e-10
Info: cfl dt = 0.0018769729838629518 cfl multiplier : 0.9998966163512408       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9728e+04 | 11520 |      1 | 3.875e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.450019780066167 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9502649094668824, dt = 0.0018769729838629518 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.8%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 307.40 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.809635416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.629278112938423e-27,-5.4143727516551464e-27,2.7542341548402003e-15)
    sum a = (-2.5562940204535773e-26,-6.248718716664301e-26,5.2201823092233877e-14)
    sum e = 1.231088817485315e-09
    sum de = -1.7531389544145018e-10
Info: cfl dt = 0.0018767597428094051 cfl multiplier : 0.9999310775674939       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9590e+04 | 11520 |      1 | 3.893e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.35587953896546 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9521418824507453, dt = 0.0018767597428094051 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.77 us    (2.0%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 318.96 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.8961805555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.510006582036184e-27,-5.392182699394265e-27,2.852587770427169e-15)
    sum a = (-1.1703033562389033e-25,4.335048609685859e-25,5.253039288187843e-14)
    sum e = 1.230761990004977e-09
    sum de = -1.72952592344373e-10
Info: cfl dt = 0.0018777508087527023 cfl multiplier : 0.9999540517116626       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9429e+04 | 11520 |      1 | 3.914e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.25996653565213 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9540186421935547, dt = 0.0018777508087527023 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (2.1%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 272.71 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.941840277777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.605701182411235e-27,-4.4380104521763496e-27,2.9515350814208568e-15)
    sum a = (-3.7878419209325146e-25,3.337383860036615e-25,5.277831111247978e-14)
    sum e = 1.23043947682085e-09
    sum de = -1.7053737305064045e-10
Info: cfl dt = 0.0018799507359738895 cfl multiplier : 0.9999693678077751       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9609e+04 | 11520 |      1 | 3.891e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.374310776790857 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9558963930023074, dt = 0.0018799507359738895 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (2.1%)
   patch tree reduce : 2.32 us    (0.8%)
   gen split merge   : 1.52 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 271.62 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.989236111111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.378313916731214e-27,-3.517123283349757e-27,3.0509884705654494e-15)
    sum a = (-1.676458448309616e-25,1.384659261079021e-25,5.294479179280988e-14)
    sum e = 1.2301211786859458e-09
    sum de = -1.6806983371864854e-10
Info: cfl dt = 0.001883366231704457 cfl multiplier : 0.9999795785385167        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9342e+04 | 11520 |      1 | 3.926e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.23821269961762 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9577763437382814, dt = 0.001883366231704457 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (1.9%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 330.26 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 6.061545138888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.272911168492026e-27,-3.4727431788279936e-27,3.1508593913169873e-15)
    sum a = (-1.688662977053101e-26,1.9704766407662993e-25,5.3029020670573354e-14)
    sum e = 1.2298070020437017e-09
    sum de = -1.6555142600660888e-10
Info: cfl dt = 0.0018879844344066475 cfl multiplier : 0.9999863856923445       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9241e+04 | 11520 |      1 | 3.940e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.209922655176552 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9596597099699858, dt = 0.0018879844344066475 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (1.8%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 335.32 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 6.096614583333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.508680473763894e-27,-3.4727431788279936e-27,3.2510566738251307e-15)
    sum a = (1.5945771554669624e-25,2.550968407910966e-25,5.303014492454946e-14)
    sum e = 1.2294968625318328e-09
    sum de = -1.6298355003822974e-10
Info: cfl dt = 0.0018938123317906801 cfl multiplier : 0.9999909237948964       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9366e+04 | 11520 |      1 | 3.923e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.32552906877244 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9615476944043925, dt = 0.0018938123317906801 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.7%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 1.34 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 317.63 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 6.128732638888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.0454023628239716e-27,-3.261937682349617e-27,3.3514868775265212e-15)
    sum a = (-2.8372200820763404e-25,3.0924056830764804e-25,5.294723794173206e-14)
    sum e = 1.2291906814366538e-09
    sum de = -1.603674728927423e-10
Info: cfl dt = 0.0019008624149201149 cfl multiplier : 0.9999939491965977       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9223e+04 | 11520 |      1 | 3.942e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.294906046118538 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9634415067361831, dt = 0.0019008624149201149 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 14.12 us   (4.1%)
   patch tree reduce : 2.30 us    (0.7%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 318.38 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 6.159375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.253494872763754e-27,-2.1524350693055295e-27,3.4520537869712615e-15)
    sum a = (-5.088178983420185e-25,-1.065122508522324e-27,5.277934268723366e-14)
    sum e = 1.2288883865358087e-09
    sum de = -1.5770463252184136e-10
Info: cfl dt = 0.0019091598280048096 cfl multiplier : 0.9999959661310651       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9162e+04 | 11520 |      1 | 3.950e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.323015401591825 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9653423691511033, dt = 0.0019091598280048096 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.2%)
   patch tree reduce : 1.71 us    (0.6%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.5%)
   LB compute        : 271.97 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 6.18984375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.959537450301087e-27,-2.9401819245668316e-27,3.552658414889314e-15)
    sum a = (-6.26203274802083e-25,2.692984742380609e-25,5.2525483401180953e-14)
    sum e = 1.2285899083089721e-09
    sum de = -1.5499655551577181e-10
Info: cfl dt = 0.0019187456802619628 cfl multiplier : 0.9999973107540434       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8766e+04 | 11520 |      1 | 4.005e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.16192934580752 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.967251528979108, dt = 0.0019187456802619628 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.7%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 312.61 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 6.220746527777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0470323210663413e-27,-1.1205976391745282e-27,3.653199130291455e-15)
    sum a = (-1.1649777436962919e-25,-4.356351059856305e-25,5.2184668309955835e-14)
    sum e = 1.2282951783257854e-09
    sum de = -1.5224483103210607e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.013210110930589358
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7224420367569294e-27,-2.0969599386533254e-27,3.652872161549048e-15)
    sum a = (-5.078859161470614e-25,-4.89778833502182e-25,5.218630315385187e-14)
    sum e = 1.2282934421676176e-09
    sum de = -1.5219671484771173e-10
Info: cfl dt = 0.000965063615915292 cfl multiplier : 0.49999910358468114       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0491e+04 | 11520 |      1 | 5.622e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.286616387904425 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.96917027465937, dt = 0.000965063615915292 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (1.9%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 316.57 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 6.252951388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8695119029792874e-27,-2.3965256441752287e-27,3.703236832403908e-15)
    sum a = (-2.985893432224248e-25,1.0846497545118999e-25,5.198227864274148e-14)
    sum e = 1.2281477029775884e-09
    sum de = -1.5081540496093862e-10
Info: cfl dt = 0.0012906619325549868 cfl multiplier : 0.6666660690564541       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8951e+04 | 11520 |      1 | 3.979e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.731243955950525 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9701353382752853, dt = 0.0012906619325549868 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (2.0%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 319.96 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 6.267881944444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5616249278595531e-27,-1.5754937105226042e-27,3.770229932291929e-15)
    sum a = (-1.081986948240594e-25,-9.266565824144218e-26,5.1675993025582844e-14)
    sum e = 1.2279545998711045e-09
    sum de = -1.4895107808203996e-10
Info: cfl dt = 0.0015123326966859866 cfl multiplier : 0.7777773793709694       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4263e+04 | 11520 |      1 | 4.748e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.786220338734275 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9714260002078403, dt = 0.0015123326966859866 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.9%)
   patch tree reduce : 1.97 us    (0.7%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 279.80 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 6.289149305555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9652065033543398e-27,-2.3632405657839062e-27,3.848183570591111e-15)
    sum a = (2.718281401958014e-25,1.6704671341991781e-25,5.126849005721333e-14)
    sum e = 1.2277312953426601e-09
    sum de = -1.4675066882468982e-10
Info: cfl dt = 0.0016654664657333946 cfl multiplier : 0.8518515862473128       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8331e+04 | 11520 |      1 | 4.066e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.389115965907415 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9729383329045262, dt = 0.0016654664657333946 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.84 us    (1.7%)
   patch tree reduce : 1.80 us    (0.4%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.3%)
   LB compute        : 385.43 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 6.322309027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.761968067346625e-27,-1.5311136060008407e-27,3.933261381494991e-15)
    sum a = (3.7212717641498694e-26,-2.7080739779180087e-25,5.075957201172582e-14)
    sum e = 1.2274891540902423e-09
    sum de = -1.4431137310039502e-10
Info: cfl dt = 0.001773524350151097 cfl multiplier : 0.9012343908315419        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7353e+04 | 11520 |      1 | 4.212e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.23634672155018 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9746037993702596, dt = 0.001773524350151097 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.90 us    (2.0%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 325.05 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 6.3875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.225246178286548e-27,-2.8958018200450683e-27,4.022860925492533e-15)
    sum a = (6.914420284490753e-26,-5.55638908612479e-26,5.014915601496714e-14)
    sum e = 1.2272357153214118e-09
    sum de = -1.416992340794839e-10
Info: cfl dt = 0.0018521049794179496 cfl multiplier : 0.9341562605543613       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8509e+04 | 11520 |      1 | 4.041e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.800637146373997 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9763773237204108, dt = 0.0018521049794179496 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (2.0%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 282.96 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (72.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 6.432552083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.499154635881807e-27,-2.7737565326102185e-27,4.11520113324231e-15)
    sum a = (6.864492666903769e-26,3.6715660470854942e-25,4.943751980232787e-14)
    sum e = 1.2269759562591204e-09
    sum de = -1.3895924193645797e-10
Info: cfl dt = 0.0019116127344501169 cfl multiplier : 0.9561041737029076       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5860e+04 | 11520 |      1 | 4.455e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.967592394843653 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9782294286998287, dt = 0.0019116127344501169 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.7%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 307.99 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 6.463020833333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8361660545939484e-27,-1.852869363783626e-27,4.209047513169472e-15)
    sum a = (3.8166889888716606e-25,3.45654444067755e-25,4.8625069687960264e-14)
    sum e = 1.2267131469814293e-09
    sum de = -1.3612198881463153e-10
Info: cfl dt = 0.001958997485907346 cfl multiplier : 0.9707361158019383        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8577e+04 | 11520 |      1 | 4.031e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.071566076167276 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9801410414342787, dt = 0.001958997485907346 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.0%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 297.85 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 6.493489583333332
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3659535523225e-27,-9.76362299478797e-28,4.303527357450308e-15)
    sum a = (8.94702907158752e-25,-2.0894153208846255e-25,4.7712161448139184e-14)
    sum e = 1.2264494296320632e-09
    sum de = -1.3320834794394993e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011329540319433867
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.686322431838981e-27,-1.8861544421749487e-27,4.302633164979768e-15)
    sum a = (9.941143412875023e-26,-3.497152236314964e-26,4.771663241062441e-14)
    sum e = 1.2264476750061426e-09
    sum de = -1.3316928222585347e-10
Info: cfl dt = 0.0009996954546227035 cfl multiplier : 0.49024537193397943      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0036e+04 | 11520 |      1 | 5.750e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.265654779458586 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.982100038920186, dt = 0.0009996954546227035 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.8%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.4%)
   LB compute        : 315.44 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 6.530815972222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0760959946647322e-27,-1.7752041808705397e-27,4.350339644808474e-15)
    sum a = (-2.2083540010029517e-25,-3.1749526774869605e-25,4.721912804407615e-14)
    sum e = 1.2263157738522384e-09
    sum de = -1.3169128222523618e-10
Info: cfl dt = 0.001353474627015904 cfl multiplier : 0.6601635812893196        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8386e+04 | 11520 |      1 | 4.058e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.86804211828532 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.9830997343748088, dt = 0.001353474627015904 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.9%)
   patch tree reduce : 1.49 us    (0.5%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 273.10 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 6.549826388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.148213664512598e-27,-2.4298107225665515e-27,4.414000860097964e-15)
    sum a = (1.2302164973432842e-25,1.2302164973432842e-25,4.651377403747171e-14)
    sum e = 1.2261392651747866e-09
    sum de = -1.296840311696081e-10
Info: cfl dt = 0.0016009412487978593 cfl multiplier : 0.7734423875262131       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8236e+04 | 11520 |      1 | 4.080e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.942563709572607 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9844532090018246, dt = 0.0016009412487978593 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (1.8%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 319.35 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 6.588541666666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.791725180078169e-27,-2.1413400431750887e-27,4.4879893402198326e-15)
    sum a = (-2.1453342525820475e-25,3.64981979586983e-25,4.563257976959945e-14)
    sum e = 1.225933873301316e-09
    sum de = -1.2730754567336477e-10
Info: cfl dt = 0.0017725769445700802 cfl multiplier : 0.8489615916841421       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8133e+04 | 11520 |      1 | 4.095e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.074844640532705 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9860541502506225, dt = 0.0017725769445700802 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (1.7%)
   patch tree reduce : 1.97 us    (0.5%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 351.92 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 6.638715277777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5629510361318418e-27,-1.3535931879137866e-27,4.5681712289120835e-15)
    sum a = (2.4480065654204745e-25,4.464638514889408e-25,4.4599139068587086e-14)
    sum e = 1.2257107894365834e-09
    sum de = -1.2467600818300112e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011384228717768601
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.406173022045349e-27,-7.544617768699794e-28,4.567255302334144e-15)
    sum a = (7.651130019552027e-26,5.014951810959275e-25,4.4603718701528355e-14)
    sum e = 1.2257094059614707e-09
    sum de = -1.2464706877289623e-10
Info: cfl dt = 0.0009484653487235338 cfl multiplier : 0.44965386389471407      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0050e+04 | 11520 |      1 | 5.746e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.106278024375236 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9878267271951926, dt = 0.0009484653487235338 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.93 us    (1.7%)
   patch tree reduce : 1.76 us    (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 380.20 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 6.676562500000001
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.967919489892934e-27,-6.767965939568933e-28,4.609564442821593e-15)
    sum a = (8.68074844445694e-26,1.1751851677362973e-25,4.40255858153576e-14)
    sum e = 1.2255922657346087e-09
    sum de = -1.232463466927988e-10
Info: cfl dt = 0.0013428322999342113 cfl multiplier : 0.6331025759298093       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7619e+04 | 11520 |      1 | 4.171e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.18609061332851 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.9887751925439161, dt = 0.0013428322999342113 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (1.8%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 328.69 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 6.69296875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.263324560615922e-27,-4.438010452176349e-28,4.668409251975752e-15)
    sum a = (1.1095026130440873e-25,-5.609645211550906e-26,4.317934351778515e-14)
    sum e = 1.2254284849310834e-09
    sum de = -1.2126176692283247e-10
Info: cfl dt = 0.0016152282975670177 cfl multiplier : 0.7554017172865395       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7968e+04 | 11520 |      1 | 4.119e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.736552518169596 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9901180248438504, dt = 0.0016152282975670177 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (1.9%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 309.82 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 6.712065972222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.397851752447518e-27,-7.988418813917429e-28,4.737585568750786e-15)
    sum a = (6.852288138160284e-26,3.4261440690801418e-25,4.2119187266961785e-14)
    sum e = 1.2252348797899699e-09
    sum de = -1.1887635057772083e-10
Info: cfl dt = 0.0018076816777665105 cfl multiplier : 0.8369344781910263       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4894e+04 | 11520 |      1 | 4.628e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.5656668505926 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.9917332531414174, dt = 0.0018076816777665105 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (1.8%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 333.43 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (62.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 6.733767361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.467195665762773e-27,2.551856010001401e-28,4.812867454666573e-15)
    sum a = (1.2852478269502708e-25,1.7681033641470577e-25,4.087979864483714e-14)
    sum e = 1.2250226597972242e-09
    sum de = -1.1621146596282273e-10
Info: cfl dt = 0.001947791884765577 cfl multiplier : 0.8912896521273508        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5936e+04 | 11520 |      1 | 4.442e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.650981316406433 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9935409348191838, dt = 0.001947791884765577 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (2.0%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.59 us    (0.6%)
   LB compute        : 264.09 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (55.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 6.776302083333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.996983163491325e-27,4.4380104521763497e-29,4.891372584663707e-15)
    sum a = (2.2065787968220812e-25,2.875830773010275e-26,3.948436105475227e-14)
    sum e = 1.224799292081799e-09
    sum de = -1.133483371433539e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010964713525787446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.365892782328484e-27,1.4423533969573136e-28,4.890013573652399e-15)
    sum a = (-5.16229375797153e-25,1.068672916884065e-25,3.9491156109748094e-14)
    sum e = 1.2247977398314769e-09
    sum de = -1.133173916660612e-10
Info: cfl dt = 0.001027075787699378 cfl multiplier : 0.4637632173757836        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.9808e+04 | 11520 |      1 | 5.816e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.056781239274068 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9954887267039494, dt = 0.001027075787699378 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (2.0%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.5%)
   LB compute        : 272.18 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 6.839583333333332
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9762407594907644e-27,9.985523517396786e-29,4.9305806016018014e-15)
    sum a = (7.115018356929124e-25,-3.593013262081973e-25,3.8729913855978314e-14)
    sum e = 1.2246825830025005e-09
    sum de = -1.1181932304536081e-10
Info: cfl dt = 0.001433115153128689 cfl multiplier : 0.6425088115838556        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7709e+04 | 11520 |      1 | 4.157e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.893537621179878 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9965158024916487, dt = 0.001433115153128689 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (2.0%)
   patch tree reduce : 1.70 us    (0.6%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 272.63 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 6.897569444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.3242864343393306e-27,-7.544617768699794e-28,4.985694101286167e-15)
    sum a = (-2.2900133933229964e-25,3.727928779828134e-26,3.7641852649663135e-14)
    sum e = 1.2245242247856838e-09
    sum de = -1.0973086912150485e-10
Info: cfl dt = 0.0017163591131643167 cfl multiplier : 0.7616725410559037       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7624e+04 | 11520 |      1 | 4.170e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.371409951897622 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9979489176447774, dt = 0.0017163591131643167 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.9%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 293.44 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.004166666666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.4339105873714504e-27,-3.6613586230454884e-28,5.049521379615111e-15)
    sum a = (-4.239187583918849e-25,-2.3432695187491126e-26,3.6299941880821354e-14)
    sum e = 1.2243383709484322e-09
    sum de = -1.072373383926206e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.018324130013084097
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.223105090893074e-27,-2.3299554873925838e-28,5.048369779224304e-15)
    sum a = (-2.6628062713058096e-25,-1.7468009139766113e-25,3.630569988263266e-14)
    sum e = 1.224337209939165e-09
    sum de = -1.0721484395429933e-10
Info: cfl dt = 0.0009598378997675427 cfl multiplier : 0.4205575136853012       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.9667e+04 | 11520 |      1 | 5.857e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.54887330221362 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9996652767579418, dt = 0.00033472324205818804 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (1.8%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 316.23 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.0680555555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1565349341104287e-27,-7.655568030004203e-28,5.060527082194766e-15)
    sum a = (-1.6083349878687092e-25,-5.964686047725014e-26,3.6039326604593655e-14)
    sum e = 1.2243014680709918e-09
    sum de = -1.0672969783940677e-10
Info: cfl dt = 0.0014041837163872334 cfl multiplier : 0.6137050091235342       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5968e+04 | 11520 |      1 | 4.436e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7162790757335133 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 493                                                     [SPH][rank=0]
Info: time since start : 207.147379981 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[0. 0. 0. ... 0. 0. 0.]
(11520, 3)
[[0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 ...
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]]
compute original rho
Info: Dumping state to _to_trash/dusty_settle/dump/0000010.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.33 us   (70.0%)
Info: dump to _to_trash/dusty_settle/dump/0000010.sham                      [Shamrock Dump][rank=0]
              - took 1.23 ms, bandwidth = 2.40 GB/s
Info: evolve_until (target_time = 1.10s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 1, dt = 0.0014041837163872334 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.07 us    (0.8%)
   patch tree reduce : 1.27 us    (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 349.19 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.079340277777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.04558467280602e-27,-5.991314110438072e-28,5.111088337100137e-15)
    sum a = (-1.0083159747344667e-25,-1.4343649781433961e-25,3.4902631405631704e-14)
    sum e = 1.2241537468267035e-09
    sum de = -1.0470940030176745e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012016983931218573
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3562454044583646e-27,-9.985523517396786e-28,5.1102902726548155e-15)
    sum a = (-3.0498007827355876e-25,-7.952914730300019e-26,3.4906621727946495e-14)
    sum e = 1.2241529773132988e-09
    sum de = -1.0469484344634211e-10
Info: cfl dt = 0.000858574681560519 cfl multiplier : 0.3712350030411781        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.9399e+04 | 11520 |      1 | 5.938e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.512621854692474 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.0014041837163872, dt = 0.000858574681560519 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.7%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 327.03 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.111545138888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6461637321101487e-27,-9.208871688265925e-28,5.140263015861238e-15)
    sum a = (1.0828745503310292e-25,-1.5692804958895572e-25,3.419967614453018e-14)
    sum e = 1.2240639138118493e-09
    sum de = -1.0346103764026903e-10
Info: cfl dt = 0.0014108490740344507 cfl multiplier : 0.5808233353607855       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6078e+04 | 11520 |      1 | 4.418e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.9967408011701595 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.0022627583979478, dt = 0.0014108490740344507 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.6%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 348.94 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.134722222222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9568244637624928e-27,-1.1095026130440874e-27,5.188210114498529e-15)
    sum a = (1.4095121196112087e-25,-7.59787389412591e-26,3.30177487255688e-14)
    sum e = 1.2239198469963786e-09
    sum de = -1.0144132690760376e-10
Info: cfl dt = 0.0017754873562313026 cfl multiplier : 0.7205488902405236       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7115e+04 | 11520 |      1 | 4.249e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.95459460378732 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.0036736074719823, dt = 0.0017754873562313026 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (2.0%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.39 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 292.58 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.167100694444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.361792917523585e-27,-7.211766984786569e-28,5.245998949284566e-15)
    sum a = (-2.9042340399042033e-25,-4.331498201324117e-25,3.149737448518673e-14)
    sum e = 1.2237424136862917e-09
    sum de = -9.891089658526758e-11
Info: cfl dt = 0.002028119579952701 cfl multiplier : 0.813699260160349         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7049e+04 | 11520 |      1 | 4.259e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.007891825574083 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.0054490948282135, dt = 0.002028119579952701 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (2.1%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 282.26 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.201822916666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3798831049795675e-27,-2.54076098387096e-27,5.308529688577867e-15)
    sum a = (-4.292443709344966e-25,5.041579873672333e-26,2.9718490422886084e-14)
    sum e = 1.2235450606889415e-09
    sum de = -9.603865096596974e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.020675661725051975
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3687880788491266e-27,-1.5810412235878246e-27,5.306725793777713e-15)
    sum a = (-3.301879776419204e-26,-9.941143412875023e-26,2.972750989693825e-14)
    sum e = 1.2235435496580597e-09
    sum de = -9.601115820862309e-11
Info: cfl dt = 0.0011065419995664426 cfl multiplier : 0.437899753386783        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.7880e+04 | 11520 |      1 | 6.443e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.331823854306435 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.0074772144081663, dt = 0.0011065419995664426 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.8%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 310.38 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.246527777777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3521455396534654e-27,-1.4867335014790772e-27,5.33962967830711e-15)
    sum a = (1.4769698784842891e-25,-8.805012737117878e-26,2.8737494454731986e-14)
    sum e = 1.223438645072722e-09
    sum de = -9.445914903716092e-11
Info: cfl dt = 0.0015920962029198353 cfl multiplier : 0.6252665022578553       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6732e+04 | 11520 |      1 | 4.309e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.243843670977158 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.0085837564077327, dt = 0.0015920962029198353 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (2.0%)
   patch tree reduce : 1.91 us    (0.7%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 269.88 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.269357638888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1287973687843267e-27,-1.980462164283696e-27,5.38483478727805e-15)
    sum a = (3.117258541608668e-25,2.144446650491612e-25,2.7293335558045883e-14)
    sum e = 1.2232904853128312e-09
    sum de = -9.223549899733016e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01196091910941338
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7293764280884552e-27,-1.4479009100225341e-27,5.3836851673289925e-15)
    sum a = (-3.117258541608668e-25,3.337383860036615e-26,2.7299083657509798e-14)
    sum e = 1.2232895846977277e-09
    sum de = -9.221932705679653e-11
Info: cfl dt = 0.0009659861369351962 cfl multiplier : 0.37508883408595173      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.8851e+04 | 11520 |      1 | 6.111e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.379081912962222 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.0101758526106526, dt = 0.0009659861369351962 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.1%)
   patch tree reduce : 2.24 us    (0.7%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 286.27 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.305381944444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3077654351317017e-27,-1.875059416044508e-27,5.410060279456932e-15)
    sum a = (7.171824890716981e-26,-1.2994494603972352e-25,2.6411363260771845e-14)
    sum e = 1.2232014930501963e-09
    sum de = -9.087871485405523e-11
Info: cfl dt = 0.0015130005297359463 cfl multiplier : 0.5833925560573011       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6689e+04 | 11520 |      1 | 4.316e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.056545409871685 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.0111418387475877, dt = 0.0015130005297359463 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.7%)
   patch tree reduce : 1.90 us    (0.5%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.4%)
   LB compute        : 334.01 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.39 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.325434027777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6184261667840462e-27,-2.2633853306099385e-27,5.44959192326568e-15)
    sum a = (9.089045406057164e-26,-1.4201633446964319e-25,2.5005358108490925e-14)
    sum e = 1.2230660340575096e-09
    sum de = -8.878975201662832e-11
Info: cfl dt = 0.0018943078171040901 cfl multiplier : 0.7222617040382007       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6762e+04 | 11520 |      1 | 4.305e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.653496318731058 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.0126548392773236, dt = 0.0018943078171040901 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.95 us    (1.9%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 342.63 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (62.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.3688368055555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.117702342653886e-27,-2.2522903044794976e-27,5.495896125323466e-15)
    sum a = (-3.017847107479918e-26,-2.130245017044648e-26,2.3220874761546083e-14)
    sum e = 1.2229007113759139e-09
    sum de = -8.619218156508364e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.018209512195037667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.485285853218756e-27,-2.3257948525936684e-27,5.494205944950875e-15)
    sum a = (-6.000190131342425e-25,-1.9314221487871473e-25,2.3229325663536145e-14)
    sum e = 1.2228995164594981e-09
    sum de = -8.617059432249652e-11
Info: cfl dt = 0.0010843286683660828 cfl multiplier : 0.4074205680127336       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.9263e+04 | 11520 |      1 | 5.980e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.403272290237469 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.0145491470944277, dt = 0.0010843286683660828 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (1.9%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 320.31 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.427604166666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.39797329243555e-27,-2.9075902853086614e-27,5.519402173019224e-15)
    sum a = (4.654585362242556e-25,-3.6356181624228657e-25,2.2195531395436553e-14)
    sum e = 1.222807289492362e-09
    sum de = -8.469695334175525e-11
Info: cfl dt = 0.0016238286355785086 cfl multiplier : 0.6049470453418224       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6640e+04 | 11520 |      1 | 4.324e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.026981961070268 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.0156334757627938, dt = 0.0016238286355785086 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.0%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 301.63 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.488194444444443
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.54076098387096e-27,-3.2771933432789735e-27,5.554883426100114e-15)
    sum a = (2.788845768147618e-25,2.9681413904155425e-25,2.0634286689143397e-14)
    sum e = 1.2226719887544528e-09
    sum de = -8.250231565195354e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012257915555525495
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8403266893928638e-27,-2.8347791763276434e-27,5.553615829168631e-15)
    sum a = (3.433244885803624e-25,1.1787355760980384e-25,2.0640624673736727e-14)
    sum e = 1.2226711569348982e-09
    sum de = -8.248700065069346e-11
Info: cfl dt = 0.0010017816735588174 cfl multiplier : 0.3683156817806075       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.8766e+04 | 11520 |      1 | 6.139e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.522833704688155 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.0172573043983724, dt = 0.0010017816735588174 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (1.9%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 1.40 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 308.20 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.545659722222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6073311406536054e-27,-3.0636140902679864e-27,5.574298374597219e-15)
    sum a = (-2.288238189142126e-25,2.3432695187491126e-26,1.9669768308824565e-14)
    sum e = 1.2225895237224746e-09
    sum de = -8.114229284685041e-11
Info: cfl dt = 0.0015875680180267575 cfl multiplier : 0.5788771211870717       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6566e+04 | 11520 |      1 | 4.336e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.316822419097013 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.0182590860719312, dt = 0.0015875680180267575 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (2.0%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 305.05 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.595746527777779
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.463095800957874e-27,-3.1287973687843267e-27,5.60503917662912e-15)
    sum a = (1.7041960136357183e-25,-1.7752041808705398e-26,1.812085329444929e-14)
    sum e = 1.2224628301745059e-09
    sum de = -7.902414090866062e-11
Info: cfl dt = 0.002055103439195212 cfl multiplier : 0.7192514141247145        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5837e+04 | 11520 |      1 | 4.459e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.81832498148443 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.019846654089958, dt = 0.002055103439195212 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (1.8%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 333.50 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.648871527777779
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1842724994365308e-27,-2.718281401958014e-27,5.641049900585561e-15)
    sum a = (-9.728118911170559e-26,-8.02392289753484e-26,1.6099633554482374e-14)
    sum e = 1.2223036806567635e-09
    sum de = -7.630458451657736e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.014737146171744483
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.452000774827433e-27,-3.7612138582194565e-27,5.638972992766873e-15)
    sum a = (3.3196318182279094e-26,-3.017847107479918e-25,1.611001809338016e-14)
    sum e = 1.222302473142472e-09
    sum de = -7.628102204443527e-11
Info: cfl dt = 0.001185505182171514 cfl multiplier : 0.4064171380415715        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.7696e+04 | 11520 |      1 | 6.510e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.364783138490102 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.0219017575291531, dt = 0.001185505182171514 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (2.1%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.5%)
   LB compute        : 268.43 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.694531250000001
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0622272120016814e-27,-3.500480744154096e-27,5.658082173349401e-15)
    sum a = (5.568815515390883e-25,2.0237327661924154e-25,1.493576492923926e-14)
    sum e = 1.2222133866328272e-09
    sum de = -7.472704078400186e-11
Info: cfl dt = 0.0017841933428134088 cfl multiplier : 0.6042780920277143       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5802e+04 | 11520 |      1 | 4.465e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.55877131550704 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 1.0230872627113246, dt = 0.0017841933428134088 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (2.1%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.5%)
   LB compute        : 274.21 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (71.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.714236111111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.349250243132823e-27,-2.9013493331102887e-27,5.684034424103741e-15)
    sum a = (-2.66280627130581e-27,3.514904278123669e-26,1.3161010432738828e-14)
    sum e = 1.222082591645405e-09
    sum de = -7.240302556671927e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011580677920267521
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.883259145654306e-27,-2.8736117677841863e-27,5.682451171526457e-15)
    sum a = (-2.6876591298379973e-25,2.1231442003211657e-25,1.3168926695654941e-14)
    sum e = 1.2220817466427644e-09
    sum de = -7.238587492640138e-11
Info: cfl dt = 0.0011071755650914185 cfl multiplier : 0.3680926973425714       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.8583e+04 | 11520 |      1 | 6.199e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.361345052775974 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.0248714560541379, dt = 0.0011071755650914185 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.84 us    (2.4%)
   patch tree reduce : 1.96 us    (0.7%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 264.61 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (58.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.743576388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9290868984363907e-27,-2.6461637321101487e-27,5.697038547452692e-15)
    sum a = (1.56129207707564e-25,2.321967068578666e-25,1.2063016778692233e-14)
    sum e = 1.222002732943622e-09
    sum de = -7.095463602306788e-11
Info: cfl dt = 0.0017612160741595775 cfl multiplier : 0.5787284648950476       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5274e+04 | 11520 |      1 | 4.558e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.74467644966854 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 1.0259786316192292, dt = 0.0017612160741595775 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.9%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 282.40 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.763802083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.727928779828134e-27,-2.3022179220664813e-27,5.7176719082884504e-15)
    sum a = (-5.615858426183953e-25,2.0379343996393797e-25,1.0298501978728763e-14)
    sum e = 1.2218802144179936e-09
    sum de = -6.869333463695362e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01135684326611547
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1842724994365308e-27,-2.435358235631772e-27,5.716118062373546e-15)
    sum a = (-2.897133223180721e-25,1.9456237822341118e-25,1.030627120848114e-14)
    sum e = 1.221879445702838e-09
    sum de = -6.86771832381085e-11
Info: cfl dt = 0.0011151294669858255 cfl multiplier : 0.3595761549650159       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.7796e+04 | 11520 |      1 | 6.473e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.794522949539152 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.0277398476933888, dt = 0.0011151294669858255 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (2.1%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 266.42 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 us    (55.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.78359375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1066073165234446e-27,-2.2411952783490564e-27,5.727617730739371e-15)
    sum a = (5.298984479898561e-26,8.748206203330021e-25,9.186057635575429e-15)
    sum e = 1.2218039734978306e-09
    sum de = -6.72559474625379e-11
Info: cfl dt = 0.0017988790432833658 cfl multiplier : 0.5730507699766773       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5189e+04 | 11520 |      1 | 4.573e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.777782577797337 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.0288549771603746, dt = 0.0017988790432833658 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.2%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.52 us    (0.5%)
   LB compute        : 276.72 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.7984374999999995
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.350697891393144e-27,-1.7752041808705399e-28,5.743517745725532e-15)
    sum a = (3.2557244677165703e-25,-1.867514798275808e-25,7.375539207551926e-15)
    sum e = 1.2216854891860376e-09
    sum de = -6.497967490315697e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.015833655788419748
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.572598414001962e-27,-7.988418813917429e-28,5.741889293896726e-15)
    sum a = (1.0668977127031946e-25,7.455857559656268e-27,7.383681466675695e-15)
    sum e = 1.2216847405878085e-09
    sum de = -6.49633928185572e-11
Info: cfl dt = 0.0011453842910547052 cfl multiplier : 0.35768358999222577      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.8549e+04 | 11520 |      1 | 6.211e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.427349927662949 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.030653856203658, dt = 0.0011453842910547052 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.9%)
   patch tree reduce : 2.39 us    (0.8%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 278.66 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.08 us    (78.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.82578125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2286526039582944e-27,-7.877468552613021e-28,5.750353770128771e-15)
    sum a = (-1.0726671262910237e-25,1.8462123481053614e-26,6.229447690697852e-15)
    sum e = 1.2216114711550006e-09
    sum de = -6.352500361231386e-11
Info: cfl dt = 0.0018547503967399116 cfl multiplier : 0.5717890599948171       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4987e+04 | 11520 |      1 | 4.610e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.943588685036794 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.0317992404947127, dt = 0.0018547503967399116 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.8%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 295.30 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.853385416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2175575778278536e-27,-7.655568030004203e-28,5.7612468200876015e-15)
    sum a = (-2.4977122824848494e-25,-3.3089805931426864e-25,4.3595948042009685e-15)
    sum e = 1.2214962462153755e-09
    sum de = -6.121315770260334e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011807031930320667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.718281401958014e-27,-1.331403135652905e-27,5.759512764898371e-15)
    sum a = (-6.517218349020969e-25,1.0296184249049132e-25,4.368265080304826e-15)
    sum e = 1.2214955025739315e-09
    sum de = -6.119640777236892e-11
Info: cfl dt = 0.001183750165646449 cfl multiplier : 0.3572630199982723        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.8585e+04 | 11520 |      1 | 6.199e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.772106796202827 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.0336539908914526, dt = 0.001183750165646449 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (2.0%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 324.63 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.884895833333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9638196250880348e-27,-6.435115155655707e-28,5.7646917400078924e-15)
    sum a = (-5.729970769935538e-25,-2.5917981040709884e-25,3.1750367935822164e-15)
    sum e = 1.2214242429508431e-09
    sum de = -5.973255095302215e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012244016470067976
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.919439520566271e-27,-1.1205976391745282e-27,5.7639854979167675e-15)
    sum a = (-1.5280069986843172e-25,2.3255174769404075e-25,3.178568004265334e-15)
    sum e = 1.2214239508213555e-09
    sum de = -5.97259726514571e-11
Info: cfl dt = 0.0009533963912053391 cfl multiplier : 0.28575433999942407      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.7938e+04 | 11520 |      1 | 6.422e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.635508451859511 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.034837741057099, dt = 0.0009533963912053391 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (2.0%)
   patch tree reduce : 1.66 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 281.46 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.895052083333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.385430618044788e-27,-5.436562803916029e-28,5.76701802321676e-15)
    sum a = (-1.0668977127031946e-25,-7.988418813917429e-27,2.218544533598833e-15)
    sum e = 1.2213677578781e-09
    sum de = -5.855244674091487e-11
Info: cfl dt = 0.0017470852973681657 cfl multiplier : 0.5238362266662827       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5365e+04 | 11520 |      1 | 4.542e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.557229607788684 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.0357911374483044, dt = 0.0017470852973681657 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (2.0%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (0.5%)
   LB compute        : 267.39 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.903385416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7086340240878948e-27,-6.324164894351298e-28,5.770436368297023e-15)
    sum a = (-9.741432942527087e-26,-2.3237422727595366e-25,4.597971018109215e-16)
    sum e = 1.2212677458431182e-09
    sum de = -5.641922286787614e-11
Info: cfl dt = 0.0022751045305261885 cfl multiplier : 0.6825574844441885       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5317e+04 | 11520 |      1 | 4.550e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.82198998431843 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.0375382227456726, dt = 0.0022751045305261885 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.44 us    (1.8%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 334.59 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.9169270833333325
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6420638673052495e-27,-1.6531588934356903e-27,5.7699461138760354e-15)
    sum a = (7.828650437639081e-26,1.1911620053641322e-25,-1.823504288130201e-15)
    sum e = 1.2211428922495994e-09
    sum de = -5.3666880868824945e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.015696018240545076
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6864439718270127e-27,-7.211766984786569e-28,5.767348739209159e-15)
    sum a = (-7.402601434230151e-26,-4.9173155810113955e-26,-1.810517414629735e-15)
    sum e = 1.2211419219009939e-09
    sum de = -5.3643409681694624e-11
Info: cfl dt = 0.0013134975982672405 cfl multiplier : 0.3941858281480628       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.8440e+04 | 11520 |      1 | 6.247e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.1099653511921 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 1.039813327276199, dt = 0.0013134975982672405 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (1.8%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.57 us    (0.4%)
   LB compute        : 330.36 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.934374999999999
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7419191024792172e-27,-1.0096473778701196e-27,5.764985402180022e-15)
    sum a = (-4.277354473807566e-25,-4.430022033362433e-25,-3.1261264506933733e-15)
    sum e = 1.2210728412919333e-09
    sum de = -5.207170627405987e-11
Info: cfl dt = 0.001976006438072524 cfl multiplier : 0.5961238854320419        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.3279e+04 | 11520 |      1 | 4.949e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.555441059497475 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.041126824874466, dt = 0.001976006438072524 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (1.9%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 302.79 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.945572916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1095026130440873e-28,-2.5962361145231646e-27,5.757944131531908e-15)
    sum a = (-1.8293479083870912e-25,-2.3876496232708762e-26,-5.097005940164844e-15)
    sum e = 1.220972626377403e-09
    sum de = -4.972584186112668e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011549353220610558
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.436562803916029e-28,-1.863964389914067e-27,5.755996896251272e-15)
    sum a = (-1.012753985186643e-25,1.6030093753260975e-25,-5.087269764316239e-15)
    sum e = 1.2209719575690756e-09
    sum de = -4.9708960512037197e-11
Info: cfl dt = 0.001196318605733648 cfl multiplier : 0.3653746284773473        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.8470e+04 | 11520 |      1 | 6.237e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.40528927843882 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.0431028313125386, dt = 0.001196318605733648 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.0%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 305.13 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.38 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.957552083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.884706793914627e-28,-1.5311136060008407e-27,5.7499205201542034e-15)
    sum a = (-3.7474560258177097e-25,-1.841774337653185e-25,-6.2756707723489914e-15)
    sum e = 1.2209135911823655e-09
    sum de = -4.830118181504287e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012975853776230289
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.103712020002802e-28,-1.7308240763487764e-27,5.749209667036512e-15)
    sum a = (7.819774416734728e-26,-8.32016009521761e-25,-6.272116506981244e-15)
    sum e = 1.2209133577428184e-09
    sum de = -4.829519747661334e-11
Info: cfl dt = 0.0009379226004875216 cfl multiplier : 0.2884582094924491       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.7940e+04 | 11520 |      1 | 6.421e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.707047437961886 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.044299149918272, dt = 0.0009379226004875216 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (1.8%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 319.48 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.9671875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.546065416960116e-28,-2.751566480349337e-27,5.743329033227041e-15)
    sum a = (1.9323097508775828e-25,3.114595735337362e-25,-7.200178285332117e-15)
    sum e = 1.2208687194495434e-09
    sum de = -4.7196726894110135e-11
Info: cfl dt = 0.0017001735973091285 cfl multiplier : 0.5256388063282994       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5248e+04 | 11520 |      1 | 4.563e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.400173267840802 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.0452370725187596, dt = 0.0017001735973091285 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (1.9%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 315.63 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.974479166666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2759280050007005e-27,-2.207910199957734e-27,5.730652255152045e-15)
    sum a = (-1.9056816881645244e-25,4.265593746109298e-25,-8.875952301006993e-15)
    sum e = 1.2207904565858973e-09
    sum de = -4.522108426565568e-11
Info: cfl dt = 0.0021921712316331915 cfl multiplier : 0.6837592042188664       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4974e+04 | 11520 |      1 | 4.613e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.268724833444725 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.0469372461160689, dt = 0.0021921712316331915 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (2.0%)
   patch tree reduce : 1.99 us    (0.7%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 279.84 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.98515625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4409057486969924e-28,-3.772308884349897e-28,5.709770094496397e-15)
    sum a = (1.9704766407662993e-25,-5.329162950973361e-25,-1.1018880039445396e-14)
    sum e = 1.2206943312613753e-09
    sum de = -4.269664661985484e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.019731290412466997
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.438010452176349e-28,-1.5200185798703999e-27,5.70742126222694e-15)
    sum a = (2.673457496391033e-25,-2.010862535881104e-25,-1.1007135877867333e-14)
    sum e = 1.2206936584571487e-09
    sum de = -4.267710549327077e-11
Info: cfl dt = 0.001253365426666455 cfl multiplier : 0.3945864014062888        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.8446e+04 | 11520 |      1 | 6.245e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.636267301678348 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.0491294173477022, dt = 0.001253365426666455 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.2%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 268.98 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.998177083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0540274823918831e-27,-1.1205976391745282e-27,5.693638171276432e-15)
    sum a = (2.939738123521614e-25,-6.648139657360172e-26,-1.2224665163327825e-14)
    sum e = 1.2206413033504746e-09
    sum de = -4.124872435075241e-11
Info: cfl dt = 0.0018847107308664877 cfl multiplier : 0.5963909342708592       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5301e+04 | 11520 |      1 | 4.553e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.909804303088439 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.0503827827743686, dt = 0.0018847107308664877 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.8%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 280.50 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1746251215664115e-27,-1.5311136060008407e-27,5.669835209107047e-15)
    sum a = (4.5622747448372874e-26,8.334583629187185e-26,-1.404112203221806e-14)
    sum e = 1.2205658009968266e-09
    sum de = -3.911651952624147e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010787975329009178
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.863964389914067e-27,-1.320308109522464e-27,5.668123461230297e-15)
    sum a = (2.179950734109023e-25,2.9441761339737903e-25,-1.4032563292923561e-14)
    sum e = 1.2205653664023546e-09
    sum de = -3.910250279079131e-11
Info: cfl dt = 0.00114775225989808 cfl multiplier : 0.3654636447569531         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.7985e+04 | 11520 |      1 | 6.405e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.592520418705316 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.052267493505235, dt = 0.00114775225989808 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.7%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 313.72 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9860096773489164e-27,-8.876020904352698e-28,5.652025620372314e-15)
    sum a = (2.156873079757706e-25,2.7604425012536896e-26,-1.5130460082524428e-14)
    sum e = 1.2205213977393583e-09
    sum de = -3.781449610229218e-11
Info: cfl dt = 0.0018054844183535267 cfl multiplier : 0.5769757631713021       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5140e+04 | 11520 |      1 | 4.582e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.01720735421524 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 1.0534152457651331, dt = 0.0018054844183535267 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.7%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 314.43 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3077654351317017e-27,-7.988418813917429e-28,5.624077753691466e-15)
    sum a = (-2.0148567452880627e-25,-6.923296305395105e-26,-1.6842875189955305e-14)
    sum e = 1.2204551408763733e-09
    sum de = -3.5802842544695914e-11
Info: cfl dt = 0.002235808789812066 cfl multiplier : 0.7179838421142014        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5237e+04 | 11520 |      1 | 4.565e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.239154154592656 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.0552207301834866, dt = 0.002235808789812066 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (2.1%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1.04 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 275.90 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3535931879137866e-27,-1.242642926609378e-27,5.584874435898281e-15)
    sum a = (1.863964389914067e-25,6.683643740977583e-26,-1.8935606089562387e-14)
    sum e = 1.2203779930298325e-09
    sum de = -3.333414570410442e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01519794351723673
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5311136060008407e-27,-7.211766984786569e-28,5.58253496282764e-15)
    sum a = (-1.1130530214058286e-25,-5.041579873672333e-26,-1.8923908724259612e-14)
    sum e = 1.2203775062339686e-09
    sum de = -3.3315420137069036e-11
Info: cfl dt = 0.0012591153749861802 cfl multiplier : 0.4059946140380671       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.8478e+04 | 11520 |      1 | 6.234e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.910363025290007 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.0574565389732986, dt = 0.0012591153749861802 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.8%)
   patch tree reduce : 1.80 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 297.77 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5200185798703999e-27,-1.1095026130440874e-27,5.558720654934215e-15)
    sum a = (-7.187801728344816e-25,-3.1287973687843265e-25,-2.009019393472479e-14)
    sum e = 1.220336598409965e-09
    sum de = -3.193971061502215e-11
Info: cfl dt = 0.0018691011579265045 cfl multiplier : 0.6039964093587114       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5227e+04 | 11520 |      1 | 4.567e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.926130072384908 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.0587156543482847, dt = 0.0018691011579265045 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.9%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 304.83 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.548960713480758e-28,-1.7973942331314217e-27,5.520435806367769e-15)
    sum a = (-3.820239397233402e-25,-8.281327503761068e-26,-2.180095590065213e-14)
    sum e = 1.2202789455549886e-09
    sum de = -2.991161615706485e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010625293994098926
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7752041808705399e-28,-2.041484808001121e-27,5.518837012781937e-15)
    sum a = (3.6409437749654774e-25,-3.965806140064786e-25,-2.1792961932409345e-14)
    sum e = 1.2202786540035567e-09
    sum de = -2.9899114939085794e-11
Info: cfl dt = 0.0011365418528059804 cfl multiplier : 0.36799880311957045      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.8064e+04 | 11520 |      1 | 6.377e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.551084683460719 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.0605847555062113, dt = 0.0011365418528059804 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (1.7%)
   patch tree reduce : 1.94 us    (0.5%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 347.19 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2981180572615823e-27,-2.130245017044648e-27,5.494075870216459e-15)
    sum a = (-4.564049949018158e-25,-2.0840897083420138e-25,-2.2821675966531357e-14)
    sum e = 1.220245485532544e-09
    sum de = -2.8675698073406085e-11
Info: cfl dt = 0.0017852728965257957 cfl multiplier : 0.5786658687463803       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5089e+04 | 11520 |      1 | 4.592e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.910857933335766 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.0617212973590173, dt = 0.0017852728965257957 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (1.9%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 329.57 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.3299554873925838e-28,-3.095512290393004e-27,5.452748362382812e-15)
    sum a = (-1.8426619397436203e-25,2.3654595710099944e-25,-2.4418181621979247e-14)
    sum e = 1.2201961264470036e-09
    sum de = -2.676747710096502e-11
Info: cfl dt = 0.0022163621959649595 cfl multiplier : 0.7191105791642535       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5044e+04 | 11520 |      1 | 4.600e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.972030395883845 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.063506570255543, dt = 0.0022163621959649595 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.8%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.5%)
   LB compute        : 309.76 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.105159668263124e-28,-2.3188604612621426e-27,5.397203728604544e-15)
    sum a = (9.692614827553147e-26,3.3267326349513915e-25,-2.6364637465902433e-14)
    sum e = 1.2201394933149185e-09
    sum de = -2.442003655770343e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.014458307503214442
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.052579834131562e-28,-1.6420638673052495e-27,5.39504670303052e-15)
    sum a = (-6.035694214959836e-26,-7.5623698105085e-26,-2.635385233799806e-14)
    sum e = 1.2201391761023528e-09
    sum de = -2.4403581945680168e-11
Info: cfl dt = 0.0012530370134143263 cfl multiplier : 0.4063701930547512       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.8005e+04 | 11520 |      1 | 6.398e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.47042007065725 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.065722932451508, dt = 0.0012530370134143263 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.3%)
   patch tree reduce : 1.59 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 260.69 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.769413587829254e-28,-2.1524350693055295e-27,5.362036302480054e-15)
    sum a = (-1.473419470122548e-26,5.547513065220437e-26,-2.7438184763289133e-14)
    sum e = 1.22010953921824e-09
    sum de = -2.3090155415997118e-11
Info: cfl dt = 0.0018638345909504927 cfl multiplier : 0.6042467953698342       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4984e+04 | 11520 |      1 | 4.611e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.783004603375325 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.0669759694649223, dt = 0.0018638345909504927 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.2%)
   patch tree reduce : 1.75 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.5%)
   LB compute        : 269.87 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.66280627130581e-28,-2.196815173827293e-27,5.310216710272852e-15)
    sum a = (1.5302260039104053e-25,3.0213975158416587e-25,-2.90257603805991e-14)
    sum e = 1.2200684078836192e-09
    sum de = -2.115035645482088e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011743925602237278
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.4380104521763497e-29,-1.753014128609658e-27,5.308737221098088e-15)
    sum a = (9.728118911170559e-26,2.2802497703282084e-25,-2.901836293449556e-14)
    sum e = 1.220068219528521e-09
    sum de = -2.1139431901480203e-11
Info: cfl dt = 0.0011372170825847084 cfl multiplier : 0.3680822651232781       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.8366e+04 | 11520 |      1 | 6.273e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.697028473929233 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.0688398040558729, dt = 0.0011372170825847084 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (1.9%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.5%)
   LB compute        : 291.60 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7737565326102185e-28,-1.6420638673052495e-27,5.275743936867195e-15)
    sum a = (1.8408867355627499e-25,4.998087371241005e-25,-2.9972767576364835e-14)
    sum e = 1.2200449261404436e-09
    sum de = -1.9965510751843e-11
Info: cfl dt = 0.0017899862712953843 cfl multiplier : 0.5787215100821853       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5033e+04 | 11520 |      1 | 4.602e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.896310297527991 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.0699770211384576, dt = 0.0017899862712953843 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (2.0%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1.05 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 268.81 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.548960713480758e-28,-4.770861236089576e-28,5.221550411762003e-15)
    sum a = (-1.9402981696915e-25,1.5053731453782179e-25,-3.145185212642807e-14)
    sum e = 1.2200109109245213e-09
    sum de = -1.813136348093566e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012996904148361747
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.108054964783766e-28,-8.210319336526247e-28,5.220226641242155e-15)
    sum a = (1.5994589669643564e-25,2.1116053731455073e-25,-3.1445233274532374e-14)
    sum e = 1.220010767759249e-09
    sum de = -1.8121863251364262e-11
Info: cfl dt = 0.0011151356868246188 cfl multiplier : 0.35957383669406173      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.7934e+04 | 11520 |      1 | 6.424e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.031825239268898 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.071767007409753, dt = 0.0011151356868246188 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.88 us    (2.1%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 304.74 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.216109929567532e-28,-7.544617768699794e-28,5.1851668632655035e-15)
    sum a = (4.164629008322287e-25,-6.449316789102672e-25,-3.235255172211159e-14)
    sum e = 1.2199912544837973e-09
    sum de = -1.698813307769746e-11
Info: cfl dt = 0.0017803513666702444 cfl multiplier : 0.5730492244627078       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4985e+04 | 11520 |      1 | 4.611e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.706612528584053 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.0728821430965776, dt = 0.0017803513666702444 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.7%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 309.63 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (62.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.458995936152975e-27,-2.474190827088315e-27,5.127062062001494e-15)
    sum a = (2.156873079757706e-25,-2.476409832314403e-25,-3.3777848461352494e-14)
    sum e = 1.2199626726036934e-09
    sum de = -1.5191690701746916e-11
Info: cfl dt = 0.0022300757449930184 cfl multiplier : 0.7153661496418051       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5081e+04 | 11520 |      1 | 4.593e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.954103235218575 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.074662494463248, dt = 0.0022300757449930184 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (1.9%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 298.54 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1357925301098683e-27,-2.9290868984363907e-27,5.050466136930797e-15)
    sum a = (3.314306205685298e-25,2.160423488119447e-25,-3.552048430488786e-14)
    sum e = 1.2199313159272932e-09
    sum de = -1.2963028064989676e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012510389428097375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0858649125228842e-27,-2.0525798341315617e-27,5.048523031966848e-15)
    sum a = (7.313841225186624e-26,7.642253998647674e-26,-3.551076877999943e-14)
    sum e = 1.2199311719292606e-09
    sum de = -1.2949154121762856e-11
Info: cfl dt = 0.0012701444243950117 cfl multiplier : 0.4051220498806017       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.8325e+04 | 11520 |      1 | 6.286e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.770973610884992 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.076892570208241, dt = 0.0012701444243950117 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.8%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 307.75 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0359372949359005e-27,-2.1524350693055295e-27,5.003430060173639e-15)
    sum a = (-2.6841087214762565e-25,2.6743450984814685e-25,-3.64832906366576e-14)
    sum e = 1.2199155838963714e-09
    sum de = -1.1693122670349042e-11
Info: cfl dt = 0.0018981518077333375 cfl multiplier : 0.6034146999204011       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4611e+04 | 11520 |      1 | 4.681e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.7684899710807 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 1.078162714632636, dt = 0.0018981518077333375 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (2.0%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 292.60 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.208871688265925e-28,-1.8084892592618625e-27,4.9335616144922656e-15)
    sum a = (2.458657790505698e-25,7.979542793013077e-26,-3.79062995797139e-14)
    sum e = 1.219895190695326e-09
    sum de = -9.83033966602667e-12
Info: cfl dt = 0.0023270509889850906 cfl multiplier : 0.7356097999469341       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4935e+04 | 11520 |      1 | 4.620e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.790940031857534 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.0800608664403692, dt = 0.0023270509889850906 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.8%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 308.80 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.296670409001261e-27,-1.5921362497182654e-27,4.844001179068275e-15)
    sum a = (-5.256379579557669e-25,1.6349630505817673e-25,-3.96003493040447e-14)
    sum e = 1.2198749549855505e-09
    sum de = -7.570016849433518e-12
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012787637594598764
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3757832401746684e-27,-1.4534484230877546e-27,4.842030109024638e-15)
    sum a = (8.876020904352699e-26,2.9628157778729312e-25,-3.9590493954111826e-14)
    sum e = 1.219874879236487e-09
    sum de = -7.556147717792886e-12
Info: cfl dt = 0.001313832741214596 cfl multiplier : 0.41186993331564475       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.7528e+04 | 11520 |      1 | 6.572e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.746625930495439 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.0823879174293543, dt = 0.001313832741214596 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.5%)
   patch tree reduce : 1.86 us    (0.5%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.3%)
   LB compute        : 374.19 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9582721120228144e-27,-1.1982628220876143e-27,4.7900262887775095e-15)
    sum a = (-7.92451146340609e-25,2.1843887445611994e-25,-4.052386812031714e-14)
    sum e = 1.219865820308645e-09
    sum de = -6.294093341402735e-12
Info: cfl dt = 0.0019484930702985577 cfl multiplier : 0.6079132888770965       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.1569e+04 | 11520 |      1 | 5.341e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.855545798489093 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.0837017501705688, dt = 0.0019484930702985577 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.7%)
   patch tree reduce : 1.91 us    (0.5%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 338.97 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1095026130440874e-29,-3.8277840150021017e-28,4.7104526637949804e-15)
    sum a = (-1.9278717404254063e-25,-2.998319861490342e-25,-4.187409377679831e-14)
    sum e = 1.2198553713657112e-09
    sum de = -4.437142796858675e-12
Info: cfl dt = 0.002385747289159299 cfl multiplier : 0.7386088592513976        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4911e+04 | 11520 |      1 | 4.625e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.168162398430232 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.0856502432408675, dt = 0.002385747289159299 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (1.9%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 297.81 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6087787889139268e-28,-1.675348945696572e-27,4.60923620541272e-15)
    sum a = (7.455857559656268e-27,-2.429366921521334e-25,-4.34715531835712e-14)
    sum e = 1.219847453027623e-09
    sum de = -2.18787097504567e-12
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.013574531615435231
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1095026130440874e-29,-1.8195842853923033e-27,4.6073306381877015e-15)
    sum a = (-3.5095786655810573e-25,-2.659255862944069e-25,-4.3462025347539286e-14)
    sum e = 1.2198474546168975e-09
    sum de = -2.1748659291814873e-12
Info: cfl dt = 0.0013480899491904025 cfl multiplier : 0.41286961975046593      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.7726e+04 | 11520 |      1 | 6.499e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.21576690094959 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.0880359905300268, dt = 0.0013480899491904025 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.8%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 300.94 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.36 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.0759744546767e-28,-1.8251317984575238e-27,4.548751284151231e-15)
    sum a = (-2.449781769601345e-26,-1.2781470102267886e-26,-4.433932834416372e-14)
    sum e = 1.2198453837813492e-09
    sum de = -9.184476726697182e-13
Info: cfl dt = 0.0019994444771951744 cfl multiplier : 0.6085797465003107       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4896e+04 | 11520 |      1 | 4.627e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.488098410624128 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.0893840804792172, dt = 0.0019994444771951744 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.7%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 331.71 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.07 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.992761758698393e-28,-1.8473218507184054e-27,4.4595059172933375e-15)
    sum a = (1.072223325245806e-25,1.180510780278909e-26,-4.5604023910821506e-14)
    sum e = 1.2198453690806697e-09
    sum de = 9.293565398429083e-13
Info: cfl dt = 0.0024519295370730608 cfl multiplier : 0.7390531643335404       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4749e+04 | 11520 |      1 | 4.655e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.464024013035008 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.0913835249564123, dt = 0.0024519295370730608 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.8%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 317.87 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.38 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.7737565326102186e-30,-1.4368058838920931e-27,4.346423719774182e-15)
    sum a = (-3.672897450221147e-25,-2.5971237166135996e-25,-4.709599260830616e-14)
    sum e = 1.2198503500597055e-09
    sum de = 3.1697760247853034e-12
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.013238833745765798
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.9401819245668318e-28,-1.9582721120228144e-27,4.344594618715192e-15)
    sum a = (2.982343023862507e-26,-3.807812967967308e-26,-4.7086847103064404e-14)
    sum e = 1.219850437936587e-09
    sum de = 3.182012150215224e-12
Info: cfl dt = 0.0013825954318638508 cfl multiplier : 0.41301772144451343      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.6955e+04 | 11520 |      1 | 6.795e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.991278280135713 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.0938354544934854, dt = 0.0013825954318638508 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.9%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.66 us    (0.5%)
   LB compute        : 277.56 us  (90.8%)
   LB move op cnt    : 0
   LB apply          : 8.37 us    (2.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4146158316312115e-28,-2.0192947557402393e-27,4.27950377107691e-15)
    sum a = (3.1847163004817485e-25,1.6447266735765552e-25,-4.7901320455378855e-14)
    sum e = 1.2198556866818845e-09
    sum de = 4.43060059885596e-12
Info: cfl dt = 0.002037127324208479 cfl multiplier : 0.6086784809630089        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.3017e+04 | 11520 |      1 | 5.005e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.944628376377358 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.0952180499253492, dt = 0.002037127324208479 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.1%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 288.61 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.62638281641778e-28,-1.3868782663051092e-27,4.181359638742583e-15)
    sum a = (-2.07166327907592e-25,-1.7432505056148703e-25,-4.906348135860441e-14)
    sum e = 1.2198665142446525e-09
    sum de = 6.254339774004498e-12
Info: cfl dt = 0.0024745534859149303 cfl multiplier : 0.7391189873086725       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4828e+04 | 11520 |      1 | 4.640e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.80546307239611 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.0972551772495578, dt = 0.0024745534859149303 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (1.9%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 318.22 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.524118444675299e-28,-2.1635300954359703e-27,4.0587656950487124e-15)
    sum a = (-2.0290583787350271e-25,5.577691536295236e-25,-5.0415233969467714e-14)
    sum e = 1.2198846326581363e-09
    sum de = 8.444043995376799e-12
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012951158078142847
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6919914848922332e-28,-1.3535931879137866e-27,4.0570932029826184e-15)
    sum a = (4.313746159515412e-26,7.4753848056458435e-25,-5.0406871508932457e-14)
    sum e = 1.219884801760275e-09
    sum de = 8.4550689910497e-12
Info: cfl dt = 0.0013855171414850207 cfl multiplier : 0.4130396624362242       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.8230e+04 | 11520 |      1 | 6.319e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.097341457138201 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.0997297307354728, dt = 0.00027026926452733413 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (2.0%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.5%)
   LB compute        : 291.34 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.189820012501751e-28,-4.6044358441329625e-28,4.04348012156994e-15)
    sum a = (-2.6752327005719035e-25,2.100066545969849e-25,-5.055049249790103e-14)
    sum e = 1.2198871345073676e-09
    sum de = 8.692634208598662e-12
Info: cfl dt = 0.0020422489799935806 cfl multiplier : 0.6086931082908161       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4859e+04 | 11520 |      1 | 4.634e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0995744022123306 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 556                                                     [SPH][rank=0]
Info: time since start : 243.444998924 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[0. 0. 0. ... 0. 0. 0.]
(11520, 3)
[[0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 ...
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]]
compute original rho
Info: Dumping state to _to_trash/dusty_settle/dump/0000011.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.88 us   (70.3%)
Info: dump to _to_trash/dusty_settle/dump/0000011.sham                      [Shamrock Dump][rank=0]
              - took 1.26 ms, bandwidth = 2.34 GB/s
Info: evolve_until (target_time = 1.20s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 1.1, dt = 0.0020422489799935806 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.60 us    (1.1%)
   patch tree reduce : 1.15 us    (0.4%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 313.99 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.694582931442795e-28,-2.7737565326102185e-28,3.940224021659101e-15)
    sum a = (1.0367192416283954e-25,-3.229096405003512e-25,-5.1615413187520635e-14)
    sum e = 1.2199065815061084e-09
    sum de = 1.047053769852381e-11
Info: cfl dt = 0.00247452261461845 cfl multiplier : 0.739128738860544          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0446e+04 | 11520 |      1 | 5.634e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.048606775765357 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.1020422489799937, dt = 0.00247452261461845 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.6%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (0.4%)
   LB compute        : 334.96 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (57.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3972798533023975e-28,-1.6420638673052495e-27,3.811413097868774e-15)
    sum a = (4.7752992465417524e-26,2.508363507570073e-25,-5.284337718435503e-14)
    sum e = 1.219935045875752e-09
    sum de = 1.2603534128486767e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012100691467420346
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.12539094311258e-28,-8.37674472848286e-28,3.809893785528391e-15)
    sum a = (-1.0029903621918551e-25,2.114268179416813e-25,-5.28357806229993e-14)
    sum e = 1.219935267163737e-09
    sum de = 1.261342006509442e-11
Info: cfl dt = 0.001381546227306111 cfl multiplier : 0.41304291295351464       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.6999e+04 | 11520 |      1 | 6.777e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.14521804193421 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.1045167715946123, dt = 0.001381546227306111 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.44 us    (1.8%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 335.04 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.299322625545839e-29,-8.76507064304829e-28,3.736908111070458e-15)
    sum a = (5.494256939794321e-25,-2.07166327907592e-25,-5.3495012833681736e-14)
    sum e = 1.2199534486003053e-09
    sum de = 1.3790210920859096e-11
Info: cfl dt = 0.0020350285759089403 cfl multiplier : 0.6086952753023431       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4574e+04 | 11520 |      1 | 4.688e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.609349641456125 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.1058983178219184, dt = 0.0020350285759089403 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.9%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.5%)
   LB compute        : 274.06 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.257898587538734e-27,-1.0873125607832058e-27,3.627588851399949e-15)
    sum a = (4.065217574193536e-26,-3.241522834269606e-25,-5.442969965263553e-14)
    sum e = 1.2199831679821721e-09
    sum de = 1.550806146665584e-11
Info: cfl dt = 0.0024713259139929502 cfl multiplier : 0.7391301835348955       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5143e+04 | 11520 |      1 | 4.582e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.989848237392001 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.1079333463978274, dt = 0.0024713259139929502 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.7%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 321.76 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.598645251091678e-28,-2.3077654351317017e-27,3.4921242669668062e-15)
    sum a = (1.091750571235382e-25,4.204571102391874e-25,-5.550768024842143e-14)
    sum e = 1.220023954364529e-09
    sum de = 1.7568814082999194e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.014065574633625597
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.60154054761232e-28,-1.6087787889139268e-27,3.490792246276274e-15)
    sum a = (-2.9965446573094715e-25,1.3669072192703158e-26,-5.5501020144993836e-14)
    sum e = 1.2200242178151847e-09
    sum de = 1.7576922954511603e-11
Info: cfl dt = 0.0013835366561076219 cfl multiplier : 0.41304339451163186      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.8439e+04 | 11520 |      1 | 6.247e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.240620004430825 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.1104046723118204, dt = 0.0013835366561076219 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.7%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 298.40 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.48914263804759e-29,-1.9083444944358303e-27,3.414012780095005e-15)
    sum a = (-2.345044722929983e-25,-4.197470285668392e-25,-5.607932654186793e-14)
    sum e = 1.2200492516479525e-09
    sum de = 1.871645679708659e-11
Info: cfl dt = 0.002038552648944031 cfl multiplier : 0.6086955963410879        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.3806e+04 | 11520 |      1 | 4.839e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.292779840520609 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.111788208967928, dt = 0.002038552648944031 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.9%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 293.90 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.892784983536393e-28,-2.7460189672841164e-27,3.2992920663752804e-15)
    sum a = (-2.094740933427237e-26,-1.7556769348809639e-25,-5.689735988821426e-14)
    sum e = 1.220088999432995e-09
    sum de = 2.0379021632385018e-11
Info: cfl dt = 0.002469201796098494 cfl multiplier : 0.7391303975607254        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4658e+04 | 11520 |      1 | 4.672e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.708117604932605 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.113826761616872, dt = 0.002469201796098494 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.6%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 328.01 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.134344881849547e-28,-3.445005613501891e-27,3.1579672011226252e-15)
    sum a = (2.9060092440850738e-25,3.665796633497665e-26,-5.78352540701871e-14)
    sum e = 1.2201416889835422e-09
    sum de = 2.2366736722509054e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011299560507626517
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7752041808705399e-28,-2.7959465848711e-27,3.1568092761210375e-15)
    sum a = (3.1687394628539136e-26,1.8178090812114328e-25,-5.782946444537705e-14)
    sum e = 1.2201419727263403e-09
    sum de = 2.2373346521322854e-11
Info: cfl dt = 0.001377659189145472 cfl multiplier : 0.41304346585357515       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.8020e+04 | 11520 |      1 | 6.393e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.904539453846374 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.1162959634129705, dt = 0.001377659189145472 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (1.9%)
   patch tree reduce : 1.72 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 292.56 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.39 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.274480356740379e-28,-2.9762407594907644e-27,3.077147130904428e-15)
    sum a = (-4.011073846676985e-25,8.893772946161405e-26,-5.832935783333051e-14)
    sum e = 1.220173469872964e-09
    sum de = 2.3468325767808845e-11
Info: cfl dt = 0.0020285749811033635 cfl multiplier : 0.6086956439023834       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5090e+04 | 11520 |      1 | 4.591e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.801895301052463 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.117673622602116, dt = 0.0020285749811033635 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.5%)
   patch tree reduce : 1.91 us    (0.5%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 340.13 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1483352045006305e-27,-2.268932843675159e-27,2.958477313577836e-15)
    sum a = (4.778849654903493e-25,-2.995657055219036e-25,-5.90337972071694e-14)
    sum e = 1.2202225949798598e-09
    sum de = 2.5064010497655467e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010301618941935986
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1372401783701896e-28,-2.868064254718966e-27,2.9577628095337856e-15)
    sum a = (2.8776059771911453e-25,1.049145670894489e-25,-5.903022468687112e-14)
    sum e = 1.220222787778457e-09
    sum de = 2.5067609340881295e-11
Info: cfl dt = 0.001231292101021736 cfl multiplier : 0.3695652146341278        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.7724e+04 | 11520 |      1 | 6.500e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.23566622695157 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.1197021975832193, dt = 0.001231292101021736 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.9%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 300.62 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.68764854011127e-28,-2.0609011037293925e-27,2.885082983716641e-15)
    sum a = (2.995657055219036e-25,-3.8513054703986363e-25,-5.944019372354324e-14)
    sum e = 1.2202541771185815e-09
    sum de = 2.602572121041293e-11
Info: cfl dt = 0.001931288110633271 cfl multiplier : 0.5797101430894185        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5051e+04 | 11520 |      1 | 4.599e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.639126391295624 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.1209334896842411, dt = 0.001931288110633271 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.8%)
   patch tree reduce : 1.77 us    (0.6%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 300.80 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.824888718481459e-29,-3.2397476300887356e-27,2.770034448468078e-15)
    sum a = (5.574141127933495e-26,-7.466952585786709e-26,-6.005630139320918e-14)
    sum e = 1.2203057758583579e-09
    sum de = 2.7512834043919137e-11
Info: cfl dt = 0.0023989009381844865 cfl multiplier : 0.7198067620596124       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.3345e+04 | 11520 |      1 | 4.935e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.089577825221353 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.1228647777948744, dt = 0.0023989009381844865 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.3%)
   patch tree reduce : 1.74 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 260.82 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2452951431539558e-28,-3.442231856969281e-27,2.625370390003289e-15)
    sum a = (4.216997531657968e-25,1.3535931879137865e-26,-6.077665671953773e-14)
    sum e = 1.2203738767214718e-09
    sum de = 2.933389816467216e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011198212245906444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.544617768699794e-28,-2.931860654969001e-27,2.624506359468684e-15)
    sum a = (1.5098111558303941e-25,1.8022760446288157e-25,-6.077233656678703e-14)
    sum e = 1.2203741432977082e-09
    sum de = 2.9337745128199614e-11
Info: cfl dt = 0.0013574245117805451 cfl multiplier : 0.4066022540198708       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.8405e+04 | 11520 |      1 | 6.259e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.797797440768356 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.1252636787330588, dt = 0.0013574245117805451 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.7%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 323.10 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.36 us    (72.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.467195665762773e-28,-2.6322949494470975e-27,2.542017681986169e-15)
    sum a = (2.946838940245096e-25,-6.424020129525266e-26,-6.115947275366327e-14)
    sum e = 1.2204145777129013e-09
    sum de = 3.0354379783978984e-11
Info: cfl dt = 0.0020198546453669528 cfl multiplier : 0.6044015026799139       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5194e+04 | 11520 |      1 | 4.573e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.686983394865479 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.1266211032448392, dt = 0.0020198546453669528 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (1.8%)
   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.50 us    (0.4%)
   LB compute        : 328.83 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2260003874137166e-27,-2.91799187230595e-27,2.4182216827612567e-15)
    sum a = (-3.0562358978912433e-25,3.2408571327017795e-25,-6.170753600693265e-14)
    sum e = 1.2204773034985092e-09
    sum de = 3.1849445042726484e-11
Info: cfl dt = 0.0024656836832960974 cfl multiplier : 0.736267668453276        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4818e+04 | 11520 |      1 | 4.642e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.665380564544872 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.1286409578902061, dt = 0.0024656836832960974 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.6%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 335.89 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.995657055219036e-28,-1.7946204765988113e-27,2.265516914037116e-15)
    sum a = (-2.9388505214311785e-25,1.0167481945936017e-25,-6.233250581505742e-14)
    sum e = 1.2205579762799726e-09
    sum de = 3.3645502173946037e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010894722755897783
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.664253919566131e-29,-1.927760790164102e-27,2.2647464251078284e-15)
    sum a = (1.16342444003803e-25,-1.1046208015466936e-25,-6.23286533707559e-14)
    sum e = 1.220558241059941e-09
    sum de = 3.364814709880984e-11
Info: cfl dt = 0.0013853416915214514 cfl multiplier : 0.41208922281775867      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.8427e+04 | 11520 |      1 | 6.252e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.198553612817461 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.1311066415735023, dt = 0.0013853416915214514 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.8%)
   patch tree reduce : 1.97 us    (0.7%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 276.70 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1912676607620726e-28,-2.4658695574904844e-27,2.178404692469516e-15)
    sum a = (-2.6241955803718757e-25,-3.2836839335652813e-25,-6.266001133660064e-14)
    sum e = 1.220605465426732e-09
    sum de = 3.464247873758364e-11
Info: cfl dt = 0.0020486376369350033 cfl multiplier : 0.6080594818785058       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.3422e+04 | 11520 |      1 | 4.918e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.139763449515378 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.1324919832650238, dt = 0.0020486376369350033 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.8%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 290.80 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.243847494893635e-28,-3.4228155612410096e-27,2.0498075129134863e-15)
    sum a = (-1.9083444944358303e-27,9.408582158613862e-27,-6.312341664203813e-14)
    sum e = 1.2206778357612208e-09
    sum de = 3.6093833231175104e-11
Info: cfl dt = 0.002498251961664433 cfl multiplier : 0.7387063212523373        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.3448e+04 | 11520 |      1 | 4.913e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.011574044373202 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.1345406209019588, dt = 0.002498251961664433 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.9%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 301.32 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1635300954359705e-28,-2.9568244637624928e-27,1.8916346386902675e-15)
    sum a = (-5.88480185958584e-26,2.209241603093387e-25,-6.36469974602132e-14)
    sum e = 1.220770119778528e-09
    sum de = 3.783253583342588e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010975399300718235
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5533036582617225e-28,-2.5296659577405193e-27,1.8909806202851224e-15)
    sum a = (-9.271003834596395e-26,-1.3420543607381282e-25,-6.364372736780469e-14)
    sum e = 1.220770359919823e-09
    sum de = 3.7833749456147404e-11
Info: cfl dt = 0.0014046110400321866 cfl multiplier : 0.4129021070841124       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.8416e+04 | 11520 |      1 | 6.255e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.377682571833368 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.1370388728636234, dt = 0.0014046110400321866 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (2.2%)
   patch tree reduce : 1.76 us    (0.6%)
   gen split merge   : 992.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.5%)
   LB compute        : 262.67 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.967919489892934e-28,-3.322960326067042e-27,1.8015900229541805e-15)
    sum a = (2.1258070065924715e-25,-5.041579873672333e-26,-6.391943836249297e-14)
    sum e = 1.2208241052297863e-09
    sum de = 3.879574725442362e-11
Info: cfl dt = 0.002077251101825827 cfl multiplier : 0.6086014047227416        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5246e+04 | 11520 |      1 | 4.563e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.081407140572107 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.1384434839036555, dt = 0.002077251101825827 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.8%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 19.30 us   (6.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 269.70 us  (87.4%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.767965939568933e-28,-3.5892409531976226e-27,1.6686196658324707e-15)
    sum a = (-1.9407419707367178e-25,2.163973896481188e-25,-6.430215820270166e-14)
    sum e = 1.2209060766452604e-09
    sum de = 4.019784157008652e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.014861617724318654
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2190052260881748e-29,-3.0677747250669018e-27,1.6682221632265414e-15)
    sum a = (-6.949924368108164e-26,1.3473799732807397e-25,-6.430017068962306e-14)
    sum e = 1.2209062257766685e-09
    sum de = 4.019787224616642e-11
Info: cfl dt = 0.0012584337845225704 cfl multiplier : 0.36953380157424726      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.8647e+04 | 11520 |      1 | 6.178e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.104609733841746 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.1405207350054813, dt = 0.0012584337845225704 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (1.9%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 310.30 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2204528743484962e-28,-3.1066073165234446e-27,1.58730672036002e-15)
    sum a = (3.7998245491533905e-25,6.44399117656006e-26,-6.451795297359326e-14)
    sum e = 1.2209572873434299e-09
    sum de = 4.103507277845345e-11
Info: cfl dt = 0.0019641788675115327 cfl multiplier : 0.5796892010494982       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5502e+04 | 11520 |      1 | 4.517e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.029115173268064 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.1417791687900039, dt = 0.0019641788675115327 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.1%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 1.58 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 300.53 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.117823882641918e-27,-3.0289421336103585e-27,1.4604448882639998e-15)
    sum a = (-1.5701680979799924e-25,-1.144119094571063e-25,-6.483687213313415e-14)
    sum e = 1.2210390880627013e-09
    sum de = 4.232338981832326e-11
Info: cfl dt = 0.0024209321318991563 cfl multiplier : 0.7197928006996653       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5466e+04 | 11520 |      1 | 4.524e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.630977015303964 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.1437433476575154, dt = 0.0024209321318991563 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (1.8%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 320.89 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1372401783701896e-28,-3.694643701436811e-27,1.3031660140475453e-15)
    sum a = (3.6258545394280777e-25,2.0503608289054734e-26,-6.519556417136314e-14)
    sum e = 1.2211433947367735e-09
    sum de = 4.388024924599982e-11
Info: cfl dt = 0.0027124348875419 cfl multiplier : 0.8131952004664434          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5363e+04 | 11520 |      1 | 4.542e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.18780301998314 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.1461642797894145, dt = 0.0027124348875419 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (1.7%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 338.91 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.764109154740099e-27,-3.284127734610499e-27,1.1258931067379103e-15)
    sum a = (-1.2382049161572015e-25,1.137905879938016e-25,-6.555409369752132e-14)
    sum e = 1.221264718294924e-09
    sum de = 4.558342833711789e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011872770366101706
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1594302306310713e-27,-3.2064625516974128e-27,1.125406862737883e-15)
    sum a = (2.9317497047076964e-25,-1.6882191760078834e-25,-6.555166247719477e-14)
    sum e = 1.2212649071127184e-09
    sum de = 4.558183299985686e-11
Info: cfl dt = 0.0014486222949166463 cfl multiplier : 0.43773173348881445      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.8334e+04 | 11520 |      1 | 6.283e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.540948399761518 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.1488767146769563, dt = 0.0014486222949166463 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (1.9%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 305.93 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3188604612621426e-27,-3.916544224045629e-27,1.0304505602680247e-15)
    sum a = (2.0184071536498037e-25,-7.455857559656268e-26,-6.57256435239557e-14)
    sum e = 1.2213315305014302e-09
    sum de = 4.6473830509570344e-11
Info: cfl dt = 0.0020602899516111656 cfl multiplier : 0.625154488992543        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5551e+04 | 11520 |      1 | 4.509e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.566694890293123 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.150325336971873, dt = 0.0020602899516111656 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (2.0%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.5%)
   LB compute        : 280.68 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4908333662839764e-27,-3.866616606458645e-27,8.949106609409107e-16)
    sum a = (3.522005094847151e-25,3.877045931021259e-25,-6.595174433816595e-14)
    sum e = 1.2214285234929966e-09
    sum de = 4.772054076663276e-11
Info: cfl dt = 0.0024587926603686972 cfl multiplier : 0.7501029926616954       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.3950e+04 | 11520 |      1 | 4.810e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.420258845468188 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.152385626923484, dt = 0.0024587926603686972 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (2.0%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 20.23 us   (6.0%)
   LB compute        : 295.26 us  (88.0%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.511575770284537e-27,-2.4908333662839764e-27,7.325160794075323e-16)
    sum a = (2.508363507570073e-25,-6.550503427412292e-26,-6.61899158027025e-14)
    sum e = 1.2215476271356309e-09
    sum de = 4.917484628396578e-11
Info: cfl dt = 0.0027163290177862117 cfl multiplier : 0.833401995107797        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5541e+04 | 11520 |      1 | 4.510e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.624973098749862 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.1548444195838528, dt = 0.0027163290177862117 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (2.0%)
   patch tree reduce : 1.57 us    (0.5%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 284.52 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.132897233589226e-27,-3.445005613501891e-27,5.524296833016832e-16)
    sum a = (-2.1479970588533534e-25,-2.6264145855979636e-25,-6.641439751669068e-14)
    sum e = 1.2216833305460747e-09
    sum de = 5.073896732547189e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01129474014088577
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.29522276074094e-27,-3.528218309480198e-27,5.521248002041455e-16)
    sum a = (5.7747392003718665e-25,-2.2900133933229964e-26,-6.64128731008846e-14)
    sum e = 1.2216834583431808e-09
    sum de = 5.073560506386422e-11
Info: cfl dt = 0.0014415068311949754 cfl multiplier : 0.44446733170259894      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.8727e+04 | 11520 |      1 | 6.152e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.896091944967662 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.157560748601639, dt = 0.0014415068311949754 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (1.9%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 315.09 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.270137411959415e-27,-3.0178471074799177e-27,4.563922603597686e-16)
    sum a = (5.329162950973361e-25,3.896573177010835e-25,-6.651642653368904e-14)
    sum e = 1.2217571422362935e-09
    sum de = 5.154826729669372e-11
Info: cfl dt = 0.002036753263738035 cfl multiplier : 0.6296448878017326        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.2963e+04 | 11520 |      1 | 5.017e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.343962660313366 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.159002255432834, dt = 0.002036753263738035 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.93 us    (2.1%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.4%)
   LB compute        : 316.54 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.501685312438353e-27,-2.041484808001121e-27,3.208400750302497e-16)
    sum a = (7.209104178515263e-25,2.374335591914347e-25,-6.66441407182201e-14)
    sum e = 1.2218632582128573e-09
    sum de = 5.2674530766705104e-11
Info: cfl dt = 0.002428283870276653 cfl multiplier : 0.7530965918678216        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5423e+04 | 11520 |      1 | 4.531e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.181559596039037 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.161039008696572, dt = 0.002428283870276653 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.8%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 311.96 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.459957424461167e-27,-1.359140700979007e-27,1.588791219373475e-16)
    sum a = (2.9610405736920604e-25,8.148187190195778e-26,-6.676874648728531e-14)
    sum e = 1.2219927544480695e-09
    sum de = 5.398407424478014e-11
Info: cfl dt = 0.002685132932415161 cfl multiplier : 0.835397727911881         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4052e+04 | 11520 |      1 | 4.790e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.25150207993684 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.1634672925668488, dt = 0.002685132932415161 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.6%)
   patch tree reduce : 1.56 us    (0.4%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 328.19 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.459957424461167e-27,-1.3147605964572435e-27,-2.0555127200202014e-17)
    sum a = (-3.7989369470629555e-25,2.0592368498098264e-26,-6.68724996547651e-14)
    sum e = 1.2221396157865265e-09
    sum de = 5.53900635493403e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010801119402186315
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.99951384004787e-27,-1.6198738150443678e-27,-2.0694422726133405e-17)
    sum a = (-2.0698880748950495e-25,-1.939410567601065e-25,-6.687180317718501e-14)
    sum e = 1.2221396734498658e-09
    sum de = 5.538526501357668e-11
Info: cfl dt = 0.0014254070830256006 cfl multiplier : 0.445132575970627        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.8466e+04 | 11520 |      1 | 6.239e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.494618230513396 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.166152425499264, dt = 0.0014254070830256006 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.8%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 317.02 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.844183474221698e-27,-2.207910199957734e-27,-1.1601302955682623e-16)
    sum a = (-4.0190622654909024e-25,4.145989364423146e-25,-6.691289535060377e-14)
    sum e = 1.222219120598084e-09
    sum de = 5.6114743534891644e-11
Info: cfl dt = 0.0020129838683798336 cfl multiplier : 0.630088383980418        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5546e+04 | 11520 |      1 | 4.509e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.379391879417902 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.1675778325822894, dt = 0.0020129838683798336 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (2.0%)
   patch tree reduce : 2.31 us    (0.8%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.5%)
   LB compute        : 269.31 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.629278112938423e-27,-9.37529708022254e-28,-2.507368950247441e-16)
    sum a = (-7.152297644727406e-25,7.278337141569214e-26,-6.695439452703373e-14)
    sum e = 1.2223330947015484e-09
    sum de = 5.712301476556646e-11
Info: cfl dt = 0.002400174978185668 cfl multiplier : 0.7533922559869453        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4091e+04 | 11520 |      1 | 4.782e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.154822420055572 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.1695908164506692, dt = 0.002400174978185668 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.8%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.5%)
   LB compute        : 305.03 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.81524134061134e-27,-1.3480456748485662e-27,-4.1148092603028337e-16)
    sum a = (2.51457672220312e-25,1.200038026268485e-25,-6.697908177646628e-14)
    sum e = 1.2224716236965285e-09
    sum de = 5.829218206049954e-11
Info: cfl dt = 0.002654779119749828 cfl multiplier : 0.8355948373246301        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5231e+04 | 11520 |      1 | 4.566e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.924629598831643 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.1719909914288549, dt = 0.002654779119749828 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.8%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 941.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 310.40 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 8
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.485042773242691e-27,-7.655568030004203e-28,-5.893252206509761e-16)
    sum a = (3.4651985610592937e-25,3.610765303890678e-25,-6.697559550967194e-14)
    sum e = 1.2226280780406154e-09
    sum de = 5.95434982077171e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01079680026898356
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.634825626003643e-27,-2.551856010001401e-28,-5.893205930194266e-16)
    sum a = (-4.86405945558528e-25,2.7089615800084437e-25,-6.697561864799318e-14)
    sum e = 1.2226280467036364e-09
    sum de = 5.953742424725907e-11
Info: cfl dt = 0.0014114237839964322 cfl multiplier : 0.44519827910821         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.8485e+04 | 11520 |      1 | 6.232e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.335440899727258 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.1746457705486046, dt = 0.0014114237839964322 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.8%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 288.43 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.9820312499999995
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.854073932067882e-27,-2.7737565326102185e-28,-6.838516048380573e-16)
    sum a = (1.7050836157261535e-25,-1.7201728512635532e-25,-6.696082549195143e-14)
    sum e = 1.2227125416363535e-09
    sum de = 6.018611293973082e-11
Info: cfl dt = 0.001995485103123087 cfl multiplier : 0.63013218607214          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.2987e+04 | 11520 |      1 | 5.011e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.138958528676373 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.176057194332601, dt = 0.001995485103123087 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (2.0%)
   patch tree reduce : 1.69 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 274.82 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.972916666666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.71393845717705e-27,-8.210319336526247e-28,-8.174604948979878e-16)
    sum a = (-1.7077464219974594e-25,-1.917220515340183e-25,-6.692472277054654e-14)
    sum e = 1.2228335648833542e-09
    sum de = 6.108117648485628e-11
Info: cfl dt = 0.002383202827054941 cfl multiplier : 0.7534214573814267        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5656e+04 | 11520 |      1 | 4.490e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.998961213939793 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.1780526794357242, dt = 0.002383202827054941 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.9%)
   patch tree reduce : 1.92 us    (0.7%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 269.34 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.35 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.9559895833333325
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.937286628046189e-27,-1.4756384753486362e-27,-9.769196621831861e-16)
    sum a = (-1.7037522125905006e-25,3.514904278123669e-26,-6.685853410244334e-14)
    sum e = 1.222980415174053e-09
    sum de = 6.211687801350546e-11
Info: cfl dt = 0.0026412702567173442 cfl multiplier : 0.8356143049209512       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5348e+04 | 11520 |      1 | 4.545e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.8780944640985 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 1.1804358822627792, dt = 0.0026412702567173442 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (2.1%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1.07 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.5%)
   LB compute        : 272.39 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.939583333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.604435844132963e-27,-1.0762175346527647e-27,-1.153432249201803e-15)
    sum a = (-1.5190200275186601e-25,-4.8640594555852795e-26,-6.675615222355663e-14)
    sum e = 1.2231460050626078e-09
    sum de = 6.322247410935706e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011446427459122034
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.926191601915748e-27,-8.76507064304829e-28,-1.1532970400985705e-15)
    sum a = (4.0885171290674624e-26,1.1787355760980384e-25,-6.675682826903614e-14)
    sum e = 1.223145869339724e-09
    sum de = 6.321523854481582e-11
Info: cfl dt = 0.0014077654093688512 cfl multiplier : 0.44520476830698374      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.8729e+04 | 11520 |      1 | 6.151e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.459172019864104 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.1830771525194965, dt = 0.0014077654093688512 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.9%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 291.77 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.916666666666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.926191601915748e-27,-4.881811497393985e-28,-1.247275886587223e-15)
    sum a = (-3.1207534748397567e-25,-5.355791013686419e-25,-6.66897602691112e-14)
    sum e = 1.2232352980528383e-09
    sum de = 6.378798076128648e-11
Info: cfl dt = 0.0019929521711699286 cfl multiplier : 0.6301365122046558       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4737e+04 | 11520 |      1 | 4.657e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.882536017286618 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.1844849179288655, dt = 0.0019929521711699286 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (1.9%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 311.59 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.906510416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.138444746654446e-27,-2.0636748602620025e-27,-1.3801381811041458e-15)
    sum a = (-2.232874008751226e-25,-2.0663376665333084e-25,-6.658024238836335e-14)
    sum e = 1.2233632702233984e-09
    sum de = 6.4576369836132e-11
Info: cfl dt = 0.0023846419046986184 cfl multiplier : 0.7534243414697706       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5630e+04 | 11520 |      1 | 4.495e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.962325605158854 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.1864778701000354, dt = 0.0023846419046986184 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.7%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 1.18 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 326.19 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.886718750000001
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.273032708480058e-27,-2.296670409001261e-27,-1.5387990851769843e-15)
    sum a = (-1.5249003913677938e-25,3.1607510440399963e-25,-6.642679354176573e-14)
    sum e = 1.2235184189242027e-09
    sum de = 6.548595099920037e-11
Info: cfl dt = 0.00264876027171009 cfl multiplier : 0.8356162276465137         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5688e+04 | 11520 |      1 | 4.485e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.142395919143063 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.188862512004734, dt = 0.00264876027171009 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.7%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.58 us    (0.5%)
   LB compute        : 327.49 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.863541666666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.006752081349477e-27,-7.544617768699794e-28,-1.714564776611799e-15)
    sum a = (-6.786605583468074e-25,-3.8610690933934245e-26,-6.62278246100828e-14)
    sum e = 1.2236932360875218e-09
    sum de = 6.6453503698465e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010155079077905315
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.551856010001401e-27,-1.664253919566131e-27,-1.7143012661138375e-15)
    sum a = (-5.971786864448496e-25,-1.2799222144076593e-25,-6.622914216254074e-14)
    sum e = 1.223692995071667e-09
    sum de = 6.644531072329709e-11
Info: cfl dt = 0.0014152049937276097 cfl multiplier : 0.4452054092155045       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.8846e+04 | 11520 |      1 | 6.113e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.599945113790536 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.191511272276444, dt = 0.0014152049937276097 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (1.9%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 304.14 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.822916666666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6309688411748086e-27,-1.7308240763487764e-27,-1.8080308237719536e-15)
    sum a = (-1.92343372997323e-25,1.3358411461050813e-25,-6.611027464956238e-14)
    sum e = 1.223787445756299e-09
    sum de = 6.694579367671747e-11
Info: cfl dt = 0.0020060962962902603 cfl multiplier : 0.630136939477003        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5353e+04 | 11520 |      1 | 4.544e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.212263151717279 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.1929264772701718, dt = 0.0020060962962902603 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.9%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.54 us    (0.5%)
   LB compute        : 282.39 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.801562499999999
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.675348945696572e-27,-1.1095026130440874e-27,-1.9405702899440736e-15)
    sum a = (4.201908296120568e-25,-1.074886131517112e-25,-6.592724693909264e-14)
    sum e = 1.2239225217856738e-09
    sum de = 6.763254043055503e-11
Info: cfl dt = 0.00240396330396083 cfl multiplier : 0.7534246263180021         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5954e+04 | 11520 |      1 | 4.439e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.270454004497033 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.194932573566462, dt = 0.00240396330396083 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (2.0%)
   patch tree reduce : 1.93 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.5%)
   LB compute        : 272.74 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.784635416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.278580221545278e-27,-1.952724598957594e-27,-2.0988733867103533e-15)
    sum a = (4.600441634726004e-25,-3.031161138836447e-26,-6.568534868659535e-14)
    sum e = 1.224086149124764e-09
    sum de = 6.842152758161522e-11
Info: cfl dt = 0.00267323478289009 cfl multiplier : 0.8356164175453348         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5705e+04 | 11520 |      1 | 4.482e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.310408921262592 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.1973365368704227, dt = 0.002663463129577437 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.5%)
   patch tree reduce : 1.92 us    (0.5%)
   gen split merge   : 1.20 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 339.27 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.749913194444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.460200504437231e-27,-1.764109154740099e-27,-2.273533133831268e-15)
    sum a = (-3.758994852993368e-26,-4.388748536157192e-25,-6.5388544160659e-14)
    sum e = 1.224269583071788e-09
    sum de = 6.925307927159213e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010371331659569001
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.9387342763065104e-27,-2.385430618044788e-27,-2.273137869873643e-15)
    sum a = (-1.4303707687364376e-25,-2.9335249088885673e-26,-6.539052048029628e-14)
    sum e = 1.2242692531699306e-09
    sum de = 6.924424553438067e-11
Info: cfl dt = 0.0014296322546376104 cfl multiplier : 0.44520547251511156      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.8851e+04 | 11520 |      1 | 6.111e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.690305588384861 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 605                                                     [SPH][rank=0]
Info: time since start : 271.491775029 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[0. 0. 0. ... 0. 0. 0.]
(11520, 3)
[[0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 ...
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]]
compute original rho
Info: Dumping state to _to_trash/dusty_settle/dump/0000012.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.85 us   (70.5%)
Info: dump to _to_trash/dusty_settle/dump/0000012.sham                      [Shamrock Dump][rank=0]
              - took 1.26 ms, bandwidth = 2.34 GB/s
Info: evolve_until (target_time = 1.30s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 1.2000000000000002, dt = 0.0014296322546376104 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.08 us    (1.0%)
   patch tree reduce : 1.25 us    (0.4%)
   gen split merge   : 891.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 280.37 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.696006944444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.605883492393284e-27,-1.7308240763487764e-27,-2.366624899023799e-15)
    sum a = (-6.729799049680217e-25,-2.444345206797429e-25,-6.521824738197461e-14)
    sum e = 1.2243686428534767e-09
    sum de = 6.967446117111062e-11
Info: cfl dt = 0.002027589986837637 cfl multiplier : 0.630136981676741         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.1028e+04 | 11520 |      1 | 5.479e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.394259708676053 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.2014296322546378, dt = 0.002027589986837637 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.6%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 335.79 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (71.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.6721354166666655
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5643986843921633e-27,-2.1746251215664115e-27,-2.4987376207877373e-15)
    sum a = (-2.511470114886596e-25,2.674788899526686e-25,-6.495905422166815e-14)
    sum e = 1.224510621367926e-09
    sum de = 7.026200152590348e-11
Info: cfl dt = 0.002432042291565877 cfl multiplier : 0.7534246544511607        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5852e+04 | 11520 |      1 | 4.456e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.380110564576736 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2034572222414754, dt = 0.002432042291565877 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.9%)
   patch tree reduce : 1.72 us    (0.6%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 291.72 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.635763888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.891701955240169e-27,-1.0873125607832058e-27,-2.6564580191484733e-15)
    sum a = (-2.1315764201803007e-25,1.0984075869136466e-25,-6.462488438694122e-14)
    sum e = 1.22468243163528e-09
    sum de = 7.093305143857858e-11
Info: cfl dt = 0.002708859480004304 cfl multiplier : 0.8356164363007738        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6100e+04 | 11520 |      1 | 4.414e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.83665950816103 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.2058892645330412, dt = 0.002708859480004304 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (2.0%)
   patch tree reduce : 1.90 us    (0.7%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 270.13 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.576649305555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0984075869136466e-27,-1.0429324562614421e-27,-2.8311113922781073e-15)
    sum a = (1.2089140471728376e-25,-4.842757005414833e-25,-6.422259196437429e-14)
    sum e = 1.2248756457742032e-09
    sum de = 7.163800935016612e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.013439431161455347
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.39797329243555e-27,-2.0192947557402393e-27,-2.83056651545759e-15)
    sum a = (-2.806154008911106e-25,-5.769413587829255e-25,-6.422531634853732e-14)
    sum e = 1.224875222553523e-09
    sum de = 7.162847303552118e-11
Info: cfl dt = 0.001451187572728298 cfl multiplier : 0.44520547876692457       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.9038e+04 | 11520 |      1 | 6.051e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.116232322657424 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2085981240130454, dt = 0.001451187572728298 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (2.0%)
   patch tree reduce : 1.92 us    (0.7%)
   gen split merge   : 1.07 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.5%)
   LB compute        : 269.02 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.499739583333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.379640025003502e-28,-2.9401819245668316e-27,-2.923773186383569e-15)
    sum a = (-1.8657395940949373e-25,2.590910501980553e-25,-6.399609135241397e-14)
    sum e = 1.2249795448837342e-09
    sum de = 7.199012597760344e-11
Info: cfl dt = 0.0020600774889574206 cfl multiplier : 0.6301369858446164       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6053e+04 | 11520 |      1 | 4.422e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.814943011783908 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2100493115857738, dt = 0.0020600774889574206 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.6%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 322.41 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.451822916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8861544421749486e-28,-1.7197290502183356e-27,-3.055443769325731e-15)
    sum a = (-2.7078520773953997e-25,-3.7075139317481224e-25,-6.365514841385248e-14)
    sum e = 1.225128499584501e-09
    sum de = 7.248077577471954e-11
Info: cfl dt = 0.002474206250954674 cfl multiplier : 0.7534246572297443        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4382e+04 | 11520 |      1 | 4.725e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.696491095149412 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2121093890747312, dt = 0.002474206250954674 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (2.1%)
   patch tree reduce : 1.70 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.5%)
   LB compute        : 258.03 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.400954861111112
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.436562803916029e-28,-3.1398923949147675e-27,-3.2125885509999552e-15)
    sum a = (8.808895996263532e-26,3.6018892829863254e-25,-6.322117913788866e-14)
    sum e = 1.2253086695450137e-09
    sum de = 7.303600017729278e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011500748285332747
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.657015678264525e-29,-2.452000774827433e-27,-3.2120516862563094e-15)
    sum a = (-1.4217166483546935e-25,4.761097613094788e-25,-6.322386346157245e-14)
    sum e = 1.2253082557688689e-09
    sum de = 7.302771403420876e-11
Info: cfl dt = 0.0013802304473730632 cfl multiplier : 0.41780821907658144      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.9272e+04 | 11520 |      1 | 5.978e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.900603554182625 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2145835953256858, dt = 0.0013802304473730632 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.6%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.61 us    (0.5%)
   LB compute        : 319.99 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.348524305555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6087787889139268e-28,-1.5976837627834858e-27,-3.299318508386965e-15)
    sum a = (-3.578423302720443e-25,-2.678783108933645e-25,-6.29695824941371e-14)
    sum e = 1.2254093784466004e-09
    sum de = 7.332307579339764e-11
Info: cfl dt = 0.0020280977866605123 cfl multiplier : 0.6118721460510543       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6643e+04 | 11520 |      1 | 4.324e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.491581828258253 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.215963825773059, dt = 0.0020280977866605123 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (2.0%)
   patch tree reduce : 1.96 us    (0.7%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.5%)
   LB compute        : 260.86 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.3218749999999995
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6808964587617923e-27,-2.8070416110015413e-27,-3.426851496105501e-15)
    sum a = (5.88180620253062e-25,-5.875925838681487e-26,-6.258084004975275e-14)
    sum e = 1.225558677848134e-09
    sum de = 7.373572296667774e-11
Info: cfl dt = 0.002469623406160082 cfl multiplier : 0.7412480973673695        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5838e+04 | 11520 |      1 | 4.459e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.37544501179364 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.2179919235597194, dt = 0.002469623406160082 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (1.9%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.5%)
   LB compute        : 295.66 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.292100694444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0706700215875443e-27,-2.8625167416537454e-27,-3.58100839962214e-15)
    sum a = (-1.445681904796446e-25,3.0498007827355876e-25,-6.208295598912226e-14)
    sum e = 1.2257415432538754e-09
    sum de = 7.42043900715323e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010957393923033487
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2759280050007006e-28,-2.1080549647837662e-27,-3.580393606555911e-15)
    sum a = (-1.6891067780983186e-25,3.3551359018453206e-26,-6.208602995428822e-14)
    sum e = 1.225741054758267e-09
    sum de = 7.419575257906031e-11
Info: cfl dt = 0.0013878540173017824 cfl multiplier : 0.41374936578912314      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.8398e+04 | 11520 |      1 | 6.262e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.1987315880651 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 1.2204615469658795, dt = 0.0013878540173017824 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (1.9%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 305.98 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.2555555555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5533036582617225e-28,-2.718281401958014e-27,-3.666563748415837e-15)
    sum a = (5.351574903756851e-25,3.198917933928713e-25,-6.179378975225146e-14)
    sum e = 1.2258443495858058e-09
    sum de = 7.444454476466692e-11
Info: cfl dt = 0.0020512190401372936 cfl multiplier : 0.6091662438594154       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6918e+04 | 11520 |      1 | 4.280e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.674581210693782 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2218494009831813, dt = 0.0020512190401372936 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.7%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 324.70 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.235503472222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4312583708268727e-27,-1.6198738150443678e-27,-3.793113553149651e-15)
    sum a = (-1.2561788584885158e-25,5.116138449268896e-25,-6.134629872654312e-14)
    sum e = 1.2259976206645243e-09
    sum de = 7.479026562565914e-11
Info: cfl dt = 0.002504639478135847 cfl multiplier : 0.7394441625729437        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6726e+04 | 11520 |      1 | 4.310e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.131813766720523 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2239006200233187, dt = 0.002504639478135847 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.6%)
   patch tree reduce : 17.83 us   (5.1%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.4%)
   LB compute        : 314.49 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.201649305555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.941629572827153e-28,-1.4423533969573136e-28,-3.94630496372224e-15)
    sum a = (4.335936211776294e-26,6.621511594647114e-25,-6.077450099879306e-14)
    sum e = 1.226185658755581e-09
    sum de = 7.517713750276999e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01132161356232996
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.60154054761232e-28,1.1095026130440873e-28,-3.945588890140733e-15)
    sum a = (-5.580354342566542e-25,2.5562940204535773e-26,-6.077808136680427e-14)
    sum e = 1.2261850606335864e-09
    sum de = 7.516780577088513e-11
Info: cfl dt = 0.0014101744443744484 cfl multiplier : 0.4131480541909813       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.9546e+04 | 11520 |      1 | 5.894e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.298295589525255 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2264052595014545, dt = 0.0014101744443744484 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.7%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 313.05 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.156510416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1372401783701896e-27,-8.598645251091678e-28,-4.031301071028109e-15)
    sum a = (6.442215972379189e-25,1.6686919300183074e-26,-6.044315248804865e-14)
    sum e = 1.226291387421482e-09
    sum de = 7.537032620340538e-11
Info: cfl dt = 0.0020869438901237824 cfl multiplier : 0.6087653694606542       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7143e+04 | 11520 |      1 | 4.244e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.96147246131556 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.227815433945829, dt = 0.0020869438901237824 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.8%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.4%)
   LB compute        : 307.31 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.136545138888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1816202828919531e-27,-8.321269597830655e-28,-4.15720638473742e-15)
    sum a = (1.580597422542607e-25,4.8285553719678683e-26,-5.993129329193747e-14)
    sum e = 1.2264492333292902e-09
    sum de = 7.564679136021743e-11
Info: cfl dt = 0.002550955207929754 cfl multiplier : 0.7391769129737694        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5856e+04 | 11520 |      1 | 4.455e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.86278630525832 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.2299023778359528, dt = 0.002550955207929754 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.9%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 300.71 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.096527777777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.203810335152835e-27,-7.1008167234821595e-28,-4.309554318771532e-15)
    sum a = (-1.759227343242705e-25,-3.0888552747147396e-25,-5.92791818004164e-14)
    sum e = 1.2266428709176216e-09
    sum de = 7.594723593305485e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.0102816584143401
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.381087673263824e-28,-1.1261451522397488e-27,-4.3087225651697635e-15)
    sum a = (-6.054333858858977e-25,-4.0829696160022415e-26,-5.92833405682771e-14)
    sum e = 1.2266421354992125e-09
    sum de = 7.593706414949168e-11
Info: cfl dt = 0.0014377660522041323 cfl multiplier : 0.4130589709912565       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.9648e+04 | 11520 |      1 | 5.863e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.662655308640412 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2324533330438825, dt = 0.0014377660522041323 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (1.9%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 325.94 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.36 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.050086805555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.267242115438773e-28,-6.102264371742481e-28,-4.393963444112823e-15)
    sum a = (6.406268087716561e-26,1.088200162873641e-25,-5.890218073889861e-14)
    sum e = 1.2267516530813529e-09
    sum de = 7.609010526306814e-11
Info: cfl dt = 0.002129142883256949 cfl multiplier : 0.6087059806608376        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5798e+04 | 11520 |      1 | 4.466e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.590990748204165 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2338910990960865, dt = 0.002129142883256949 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.7%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 315.23 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 7.022743055555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.108054964783766e-28,-5.2701374119594155e-28,-4.519100593706899e-15)
    sum a = (4.504691559220299e-25,-2.094740933427237e-26,-5.83208678901586e-14)
    sum e = 1.2269141969791883e-09
    sum de = 7.62918536987077e-11
Info: cfl dt = 0.002604659125874674 cfl multiplier : 0.7391373204405584        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7621e+04 | 11520 |      1 | 4.171e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.378066778184095 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2360202419793436, dt = 0.002604659125874674 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.6%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.3%)
   LB compute        : 343.30 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 6.971701388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3092130833920231e-27,-4.382535321524145e-28,-4.6703877254309825e-15)
    sum a = (2.184888020737069e-25,1.4032989049781618e-25,-5.758215502919097e-14)
    sum e = 1.2271135222410811e-09
    sum de = 7.649846095935205e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01092894852041887
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.598645251091678e-28,-4.216109929567532e-28,-4.669425677832498e-15)
    sum a = (1.2800886397996158e-25,3.783847711525556e-25,-5.75869652675617e-14)
    sum e = 1.2271126240198523e-09
    sum de = 7.64874028077148e-11
Info: cfl dt = 0.001469430665392299 cfl multiplier : 0.4130457734801862        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.9741e+04 | 11520 |      1 | 5.836e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.068325919902115 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2386249011052182, dt = 0.001469430665392299 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.9%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 1.09 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 276.62 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 6.8928819444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0873125607832058e-27,6.878916200873342e-28,-4.754051995041423e-15)
    sum a = (-1.6828935634652717e-25,-3.6906494920298523e-25,-5.715592457063384e-14)
    sum e = 1.227225369364886e-09
    sum de = 7.658650425463088e-11
Info: cfl dt = 0.0021718054956859725 cfl multiplier : 0.6086971823201242       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7785e+04 | 11520 |      1 | 4.146e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.75868668655456 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.2400943317706106, dt = 0.0021718054956859725 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.7%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 305.85 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 6.8583333333333325
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.82633636674178e-28,-7.211766984786569e-28,-4.8778668539216724e-15)
    sum a = (-2.785073459263268e-25,-4.60487964517818e-25,-5.65013489246063e-14)
    sum e = 1.2273922159670015e-09
    sum de = 7.670633267058069e-11
Info: cfl dt = 0.00264181485141361 cfl multiplier : 0.7391314548800828         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6941e+04 | 11520 |      1 | 4.276e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.28480627499091 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.2422661372662966, dt = 0.00264181485141361 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.9%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.5%)
   LB compute        : 296.89 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 6.8128472222222225
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.551856010001401e-28,-2.324407974327363e-27,-5.02642215114756e-15)
    sum a = (-5.574141127933495e-26,1.79206862058881e-25,-5.5676815454751934e-14)
    sum e = 1.2275953858805594e-09
    sum de = 7.680950628975013e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012580822528808296
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.328507839132262e-29,-1.27038049193548e-27,-5.025333018763726e-15)
    sum a = (-3.2659318917565757e-25,-1.5177995746443116e-26,-5.5682261116854836e-14)
    sum e = 1.2275943230711559e-09
    sum de = 7.679780947883602e-11
Info: cfl dt = 0.0014813779096137171 cfl multiplier : 0.41304381829336095      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.8027e+04 | 11520 |      1 | 6.390e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.88272971366944 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.2449079521177102, dt = 0.0014813779096137171 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.89 us    (2.0%)
   patch tree reduce : 2.46 us    (0.7%)
   gen split merge   : 1.18 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.74 us    (0.5%)
   LB compute        : 325.00 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 6.768402777777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.430772210874743e-28,-1.4811859884138568e-27,-5.107826683556126e-15)
    sum a = (1.7862992070009807e-25,-1.034500236402307e-25,-5.5205285715169056e-14)
    sum e = 1.2277084464139055e-09
    sum de = 7.683753955646965e-11
Info: cfl dt = 0.0021874611295568014 cfl multiplier : 0.6086958788622406       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7472e+04 | 11520 |      1 | 4.193e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.717582141140513 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2463893300273239, dt = 0.0021874611295568014 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (2.1%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.61 us    (0.6%)
   LB compute        : 270.93 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 6.745572916666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.992761758698393e-29,-1.891701955240169e-27,-5.228232809789228e-15)
    sum a = (1.8550883690097141e-25,8.148187190195778e-26,-5.4483339827924026e-14)
    sum e = 1.2278769989313556e-09
    sum de = 7.686867224090481e-11
Info: cfl dt = 0.0026640806364428295 cfl multiplier : 0.7391305859081605       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6588e+04 | 11520 |      1 | 4.333e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.17522390047551 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.2485767911568806, dt = 0.0026640806364428295 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (1.9%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 297.54 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 6.7078993055555545
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.551856010001401e-28,-1.558851171326943e-27,-5.372591206150508e-15)
    sum a = (4.2959941177067065e-26,-9.950019433779376e-26,-5.357554612177971e-14)
    sum e = 1.22808221236598e-09
    sum de = 7.686278887143484e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011771041811777325
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.331403135652905e-28,-1.5144710668051793e-27,-5.3713819883370526e-15)
    sum a = (1.0464828646231831e-25,5.298984479898561e-26,-5.3581592211156495e-14)
    sum e = 1.2280809990596911e-09
    sum de = 7.68508090128101e-11
Info: cfl dt = 0.001491234252864991 cfl multiplier : 0.4130435286360535        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.8979e+04 | 11520 |      1 | 6.070e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.800614360433691 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2512408717933234, dt = 0.001491234252864991 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (2.2%)
   patch tree reduce : 1.49 us    (0.5%)
   gen split merge   : 981.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.67 us    (0.6%)
   LB compute        : 258.46 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (63.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 6.668836805555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.8277840150021017e-28,-1.370235727109448e-27,-5.4512927475991766e-15)
    sum a = (-4.502805404778125e-25,-1.6300812390843733e-25,-5.3058653260244474e-14)
    sum e = 1.228195958549347e-09
    sum de = 7.682902137756906e-11
Info: cfl dt = 0.002199728753417241 cfl multiplier : 0.608695685757369         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7932e+04 | 11520 |      1 | 4.124e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.016422272962222 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2527321060461885, dt = 0.002199728753417241 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.8%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 311.83 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 6.642621527777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.708147864135766e-28,-1.7308240763487764e-27,-5.567617480555073e-15)
    sum a = (-1.887042044265384e-25,8.343459650091537e-27,-5.2269653614193463e-14)
    sum e = 1.228365382432486e-09
    sum de = 7.67689688321083e-11
Info: cfl dt = 0.002675176576754373 cfl multiplier : 0.7391304571715794        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7000e+04 | 11520 |      1 | 4.267e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.560543648690977 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2549318347996057, dt = 0.002675176576754373 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.6%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 329.80 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.02 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 6.606423611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.27038049193548e-27,-1.558851171326943e-27,-5.706580240973865e-15)
    sum a = (-2.498599884575285e-25,-5.5918931697422e-27,-5.1281702051584605e-14)
    sum e = 1.2285710666645034e-09
    sum de = 7.665192397686717e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01308997545341825
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.359140700979007e-27,-1.7086340240878948e-27,-5.70525876853517e-15)
    sum a = (-2.9086720503563796e-25,2.9055654430398563e-25,-5.128830941377089e-14)
    sum e = 1.2285697258939204e-09
    sum de = 7.664002773402627e-11
Info: cfl dt = 0.001497351569282918 cfl multiplier : 0.41304348572385985       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0086e+04 | 11520 |      1 | 5.735e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.792092516201947 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.25760701137636, dt = 0.001497351569282918 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (1.9%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 309.13 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 6.554166666666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.863964389914067e-27,-9.37529708022254e-28,-5.782064237050478e-15)
    sum a = (-5.398395914027311e-25,-8.032798918439192e-27,-5.072051662361579e-14)
    sum e = 1.228684833296084e-09
    sum de = 7.655611639990396e-11
Info: cfl dt = 0.0022080393454737474 cfl multiplier : 0.6086956571492399       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8565e+04 | 11520 |      1 | 4.033e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.366089133343193 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2591043629456429, dt = 0.0022080393454737474 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (1.9%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 311.88 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 6.52734375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.2397476300887356e-27,-1.1261451522397488e-27,-5.8936320406647414e-15)
    sum a = (-3.7749716906212033e-25,-2.8625167416537456e-25,-4.9865817593170044e-14)
    sum e = 1.228854231895372e-09
    sum de = 7.640471498789662e-11
Info: cfl dt = 0.0026767439786673187 cfl multiplier : 0.7391304380994933       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8355e+04 | 11520 |      1 | 4.063e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.565011212220664 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2613124022911166, dt = 0.0026767439786673187 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (1.9%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 307.24 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 6.495052083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.06077956374136e-27,-2.146887556240309e-27,-6.0261664631086355e-15)
    sum a = (1.9687014365854286e-25,-2.436467738244816e-25,-4.88018132808766e-14)
    sum e = 1.229058934059538e-09
    sum de = 7.617802585586601e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011514876008240565
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.0899647773277834e-27,-2.2411952783490564e-27,-6.024742429537454e-15)
    sum a = (2.8305630663980758e-25,-1.3136510938441996e-26,-4.880893344869185e-14)
    sum e = 1.2290574939388057e-09
    sum de = 7.61665689943282e-11
Info: cfl dt = 0.0014942205885795138 cfl multiplier : 0.4130434793664978       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.8734e+04 | 11520 |      1 | 6.149e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.670650384374449 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2639891462697839, dt = 0.0014942205885795138 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (2.1%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.5%)
   LB compute        : 262.24 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 6.446875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.612878653718826e-27,-1.841774337653185e-27,-6.0976832722384704e-15)
    sum a = (-3.4643109589688587e-25,2.409839675531758e-25,-4.8200404507253834e-14)
    sum e = 1.229171637896454e-09
    sum de = 7.602227191702388e-11
Info: cfl dt = 0.002200975042447925 cfl multiplier : 0.6086956529109986        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8748e+04 | 11520 |      1 | 4.007e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.423547762073639 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2654833668583634, dt = 0.002200975042447925 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.96 us    (2.1%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 307.11 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.39 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 6.422569444444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.910996710980408e-27,-1.0096473778701196e-27,-6.2033165213576145e-15)
    sum a = (-6.745775887308051e-27,1.5177995746443116e-26,-4.728720657802031e-14)
    sum e = 1.2293392487860554e-09
    sum de = 7.578320862135908e-11
Info: cfl dt = 0.0026726623933991146 cfl multiplier : 0.739130435273999        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8578e+04 | 11520 |      1 | 4.031e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.65623927967617 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.2676843419008113, dt = 0.0026726623933991146 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.6%)
   patch tree reduce : 2.03 us    (0.5%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 349.32 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 6.389496527777776
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.378435456719246e-27,-1.558851171326943e-27,-6.3286942971417525e-15)
    sum a = (1.0331688332666542e-25,-6.701395782786288e-26,-4.615128962530452e-14)
    sum e = 1.229541857407321e-09
    sum de = 7.545181615291503e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011539372496256273
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.400625508980128e-27,-1.4257108577616523e-27,-6.327176335879647e-15)
    sum a = (-3.4190432523566596e-25,3.9143252188195404e-26,-4.615887943147897e-14)
    sum e = 1.2295403459419445e-09
    sum de = 7.544107144765552e-11
Info: cfl dt = 0.0014959709953890504 cfl multiplier : 0.4130434784246663       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0323e+04 | 11520 |      1 | 5.669e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.973697929492587 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2703570042942103, dt = 0.0014959709953890504 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (2.1%)
   patch tree reduce : 1.71 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.5%)
   LB compute        : 266.96 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 6.337152777777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.6099833571981834e-27,-1.3036655703268027e-27,-6.396238823185722e-15)
    sum a = (-1.453892224132972e-25,3.168739462853914e-25,-4.5508798345685004e-14)
    sum e = 1.2296535195922764e-09
    sum de = 7.523871355324028e-11
Info: cfl dt = 0.002201496184648238 cfl multiplier : 0.608695652283111         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8855e+04 | 11520 |      1 | 3.992e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.489434881837102 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2718529752895993, dt = 0.002201496184648238 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (2.0%)
   patch tree reduce : 1.93 us    (0.7%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 265.80 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 6.316840277777779
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.682101027046049e-27,-2.995657055219036e-28,-6.495940017886601e-15)
    sum a = (-2.2669357389716796e-25,2.0743260853472258e-25,-4.4535861636395965e-14)
    sum e = 1.229819372354692e-09
    sum de = 7.491586390032043e-11
Info: cfl dt = 0.002668382154790761 cfl multiplier : 0.7391304348554074        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8895e+04 | 11520 |      1 | 3.987e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.87857639823689 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.2740544714742474, dt = 0.002668382154790761 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.8%)
   patch tree reduce : 2.34 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.5%)
   LB compute        : 301.14 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (73.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 6.285590277777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.2867799511550766e-27,1.7752041808705399e-28,-6.613707758098636e-15)
    sum a = (2.1817259382898936e-25,4.5356466821242294e-26,-4.3330629779996826e-14)
    sum e = 1.230019216165984e-09
    sum de = 7.448613058719717e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01093019604347195
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.737576157698253e-27,-2.2190052260881748e-29,-6.612099748511374e-15)
    sum a = (2.907784448265944e-25,4.57115076574164e-26,-4.333866982802438e-14)
    sum e = 1.2300176564333665e-09
    sum de = 7.44762931052844e-11
Info: cfl dt = 0.0014899812097432514 cfl multiplier : 0.4130434782851358       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0173e+04 | 11520 |      1 | 5.710e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.821971531259923 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2767228536290383, dt = 0.0014899812097432514 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.9%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.5%)
   LB compute        : 290.62 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 6.253645833333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.132897233589226e-27,-3.8000464496759996e-28,-6.676684279169061e-15)
    sum a = (-2.7178376009127967e-25,4.1495397727848865e-25,-4.2651904882980983e-14)
    sum e = 1.2301289149006006e-09
    sum de = 7.422079916071414e-11
Info: cfl dt = 0.0021949742563475805 cfl multiplier : 0.6086956521900905       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8672e+04 | 11520 |      1 | 4.018e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.350106848434093 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2782128348387816, dt = 0.0021949742563475805 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (1.9%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 308.28 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 6.235590277777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.522549256426945e-27,1.256511709272429e-27,-6.769792478936105e-15)
    sum a = (-1.430814569781655e-25,7.026258147885597e-25,-4.162472424073433e-14)
    sum e = 1.2302919695976891e-09
    sum de = 7.38214647761227e-11
Info: cfl dt = 0.002665429889811849 cfl multiplier : 0.7391304347933936        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8756e+04 | 11520 |      1 | 4.006e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.724420215562457 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2804078090951292, dt = 0.002665429889811849 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (2.1%)
   patch tree reduce : 1.96 us    (0.7%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 267.06 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 6.208420138888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.600214439340031e-27,3.350697891393144e-27,-6.879612945555263e-15)
    sum a = (-4.418483206186774e-25,-3.99509700904915e-25,-4.035266379016412e-14)
    sum e = 1.2304885626520175e-09
    sum de = 7.33015392367029e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012640153455955996
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.1355494501338035e-27,1.6670276760987415e-27,-6.87791765157877e-15)
    sum a = (3.1154833374277977e-25,-1.081986948240594e-25,-4.036114026015407e-14)
    sum e = 1.2304869744137897e-09
    sum de = 7.329274153767233e-11
Info: cfl dt = 0.0014887898156982484 cfl multiplier : 0.4130434782644645       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0429e+04 | 11520 |      1 | 5.639e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.016149481448487 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.283073238984941, dt = 0.0014887898156982484 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (2.1%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 276.99 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 6.177690972222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.3825353215241455e-27,1.952724598957594e-27,-6.938018202865094e-15)
    sum a = (-2.8190242392224174e-25,-1.5701680979799924e-25,-3.963738846551846e-14)
    sum e = 1.230596355424512e-09
    sum de = 7.298826241000367e-11
Info: cfl dt = 0.002190939917648339 cfl multiplier : 0.6086956521763097        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9088e+04 | 11520 |      1 | 3.960e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.532943878393434 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2845620288006394, dt = 0.002190939917648339 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.9%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 300.08 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 6.1650173611111105
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.6307257611987435e-27,1.622647571576978e-27,-7.024322582336581e-15)
    sum a = (-2.3335058957543246e-25,-2.8873696001859332e-25,-3.855773092576307e-14)
    sum e = 1.2307563385191346e-09
    sum de = 7.25195420586149e-11
Info: cfl dt = 0.002656223810161547 cfl multiplier : 0.7391304347842066        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9054e+04 | 11520 |      1 | 3.965e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.89259390352357 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.2867529687182877, dt = 0.002656223810161547 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.8%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 311.65 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 6.143055555555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.113359397872922e-27,6.157739502394685e-28,-7.125557812885882e-15)
    sum a = (-6.67476772007323e-26,-2.069000472804614e-25,-3.722564145012682e-14)
    sum e = 1.2309486857353013e-09
    sum de = 7.192010504024674e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011345545456986707
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.9164226840575964e-27,6.657015678264525e-28,-7.123788648996384e-15)
    sum a = (-3.7341419944611805e-25,-1.3593626015016158e-25,-3.723448726957103e-14)
    sum e = 1.2309470910385828e-09
    sum de = 7.191242132545722e-11
Info: cfl dt = 0.00148319391167958 cfl multiplier : 0.41304347826140225        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.9926e+04 | 11520 |      1 | 5.781e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.540014054612836 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2894091925284492, dt = 0.00148319391167958 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.8%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.57 us    (0.5%)
   LB compute        : 312.73 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 6.111545138888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.003735244840801e-27,8.043893944569634e-28,-7.179026362056471e-15)
    sum a = (-1.1849487907310853e-25,-4.708729089759107e-26,-3.647814133173346e-14)
    sum e = 1.231053986026742e-09
    sum de = 7.156527426100303e-11
Info: cfl dt = 0.0021849344597527575 cfl multiplier : 0.6086956521742682       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7878e+04 | 11520 |      1 | 4.132e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.921333528481123 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2908923864401287, dt = 0.0021849344597527575 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.9%)
   patch tree reduce : 1.77 us    (0.6%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 285.70 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 6.097916666666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.85395239207985e-27,8.792808208374392e-28,-7.25816780623464e-15)
    sum a = (5.273244019275939e-25,4.053678747017878e-25,-3.5350428922050686e-14)
    sum e = 1.2312103588404893e-09
    sum de = 7.103568504459917e-11
Info: cfl dt = 0.002652884559218605 cfl multiplier : 0.7391304347828456        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9157e+04 | 11520 |      1 | 3.951e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.90823424587778 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.2930773208998814, dt = 0.002652884559218605 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.7%)
   patch tree reduce : 1.86 us    (0.5%)
   gen split merge   : 1.19 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 333.94 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 6.069010416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.862395201665713e-27,2.1884939042294624e-27,-7.350716424431867e-15)
    sum a = (1.4689814596703718e-25,-9.535065456500887e-26,-3.395970979455495e-14)
    sum e = 1.2313984397401888e-09
    sum de = 7.036521714126283e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01170560973637831
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.2895537076876866e-27,1.753014128609658e-27,-7.34887171578076e-15)
    sum a = (2.1222565982307302e-25,1.4110654232694704e-25,-3.3968933338073575e-14)
    sum e = 1.2313968368066824e-09
    sum de = 7.035854867653681e-11
Info: cfl dt = 0.0014836424121869815 cfl multiplier : 0.4130434782609485       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.9864e+04 | 11520 |      1 | 5.799e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.467628237069768 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2957302054591, dt = 0.0014836424121869815 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (1.9%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 313.51 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 6.036631944444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.8693295929972385e-27,2.1357925301098683e-27,-7.399281700479522e-15)
    sum a = (5.946934005916308e-25,-3.393080891211428e-25,-3.317937176026827e-14)
    sum e = 1.2315014343742062e-09
    sum de = 6.99726195043003e-11
Info: cfl dt = 0.0021861080333607365 cfl multiplier : 0.6086956521739656       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8855e+04 | 11520 |      1 | 3.992e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.378314557473637 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.297213847871287, dt = 0.0021861080333607365 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.9%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 275.23 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 6.018663194444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.450553126567112e-27,1.128918908772359e-27,-7.471229678102179e-15)
    sum a = (1.2089140471728376e-25,5.638492279490052e-26,-3.2003538099025346e-14)
    sum e = 1.2316543551320406e-09
    sum de = 6.938793393000523e-11
Info: cfl dt = 0.002655885232627024 cfl multiplier : 0.7391304347826436        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9132e+04 | 11520 |      1 | 3.954e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.90195821357387 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.2993999559046476, dt = 0.0006000440953524144 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (2.0%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.5%)
   LB compute        : 264.75 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.99375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.862455971659729e-27,1.445127153489924e-27,-7.489147962464533e-15)
    sum a = (-3.080866855900822e-25,1.6820059613748365e-25,-3.168498128351778e-14)
    sum e = 1.2316949299379552e-09
    sum de = 6.92199299534165e-11
Info: cfl dt = 0.0029697866695491985 cfl multiplier : 0.8260869565217623       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9143e+04 | 11520 |      1 | 3.953e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.464789773965942 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 654                                                     [SPH][rank=0]
Info: time since start : 297.67650167200003 (s)                                       [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[0. 0. 0. ... 0. 0. 0.]
(11520, 3)
[[0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 ...
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]]
compute original rho
Info: Dumping state to _to_trash/dusty_settle/dump/0000013.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.32 us   (70.9%)
Info: dump to _to_trash/dusty_settle/dump/0000013.sham                      [Shamrock Dump][rank=0]
              - took 1.23 ms, bandwidth = 2.41 GB/s
Info: evolve_until (target_time = 1.40s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 1.3, dt = 0.0029697866695491985 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.11 us    (1.0%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 304.78 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.986545138888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.8526870538015776e-27,2.15520882583814e-27,-7.583150023433396e-15)
    sum a = (5.313629914390744e-25,-1.0318374301310013e-25,-3.005033612993572e-14)
    sum e = 1.2319012230673525e-09
    sum de = 6.839581856258038e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.014632703071096575
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.508802013751926e-27,1.636516354240029e-27,-7.580722749743707e-15)
    sum a = (4.757103403687829e-25,-1.6003465690547916e-25,-3.006247249801737e-14)
    sum e = 1.2318991975278068e-09
    sum de = 6.838865586354549e-11
Info: cfl dt = 0.00158771143088497 cfl multiplier : 0.4420289855072541         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.7960e+04 | 11520 |      1 | 6.414e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.668123273606295 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.3029697866695493, dt = 0.00158771143088497 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.7%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 1.21 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 330.49 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.953732638888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.9609850985614082e-27,1.3147605964572435e-27,-7.628471302179644e-15)
    sum a = (-4.069655584645713e-26,8.969219123848403e-26,-2.9180004748609304e-14)
    sum e = 1.2320079918952384e-09
    sum de = 6.793417772219611e-11
Info: cfl dt = 0.002255372201274181 cfl multiplier : 0.6280193236715027        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9186e+04 | 11520 |      1 | 3.947e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.48102132736159 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.3045574981004342, dt = 0.002255372201274181 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (2.0%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 941.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 289.82 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.937760416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.36040603925728e-27,1.7197290502183356e-27,-7.693582521655893e-15)
    sum a = (3.3214070224087803e-25,-1.1663091468319448e-25,-2.791498142456612e-14)
    sum e = 1.2321610629754412e-09
    sum de = 6.727336309297794e-11
Info: cfl dt = 0.002701799954185358 cfl multiplier : 0.7520128824476684        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9243e+04 | 11520 |      1 | 3.939e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.610743396833925 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.3068128703017083, dt = 0.002701799954185358 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.7%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 329.47 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.910677083333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1510481910392245e-27,1.1455614479680203e-27,-7.767576667971393e-15)
    sum a = (-3.377325954106202e-26,1.2550693558754716e-25,-2.6381417110281733e-14)
    sum e = 1.2323422511445123e-09
    sum de = 6.646000646891788e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010698726589825245
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.463095800957874e-27,1.4368058838920931e-27,-7.765504975973685e-15)
    sum a = (-4.978449174990125e-25,-3.919650831362152e-25,-2.6391775569985263e-14)
    sum e = 1.2323405461734326e-09
    sum de = 6.645489468011148e-11
Info: cfl dt = 0.001502411302881052 cfl multiplier : 0.41733762748255615       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0772e+04 | 11520 |      1 | 5.546e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.538397738765603 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.3095146702558937, dt = 0.001502411302881052 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.6%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1.18 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 327.41 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.878125000000001
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.87632475432278e-27,2.385430618044788e-28,-7.805170271135299e-15)
    sum a = (1.075995634130156e-25,1.0029903621918551e-25,-2.5528723562301744e-14)
    sum e = 1.2324405657847926e-09
    sum de = 6.599402065307502e-11
Info: cfl dt = 0.0022034112353716876 cfl multiplier : 0.6115584183217041       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9448e+04 | 11520 |      1 | 3.912e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.826071490678855 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.3110170815587747, dt = 0.0022034112353716876 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.5%)
   patch tree reduce : 2.16 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 342.92 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.76 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.861979166666668
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.2203313343604636e-27,6.157739502394685e-28,-7.860772217911854e-15)
    sum a = (1.3527055858233514e-25,1.0544712834371007e-25,-2.4253214716723892e-14)
    sum e = 1.2325858365644983e-09
    sum de = 6.530560707871652e-11
Info: cfl dt = 0.002668759866363271 cfl multiplier : 0.7410389455478027        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9409e+04 | 11520 |      1 | 3.917e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.250200060890073 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.3132204927941464, dt = 0.002668759866363271 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (1.8%)
   patch tree reduce : 2.35 us    (0.7%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 326.93 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.838802083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.9277000201700857e-27,1.2232266308811064e-27,-7.924092988719616e-15)
    sum a = (5.722814478081403e-26,1.9056816881645244e-25,-2.269300187509729e-14)
    sum e = 1.2327595355026056e-09
    sum de = 6.445300451723823e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011570237994773178
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.6711275409036403e-27,1.2065840916854451e-27,-7.922011072009421e-15)
    sum a = (-5.303422490350738e-27,1.246193334971119e-25,-2.2703411458548144e-14)
    sum e = 1.2327578420373408e-09
    sum de = 6.444863955672042e-11
Info: cfl dt = 0.0014914510330974943 cfl multiplier : 0.41367964851593425      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.9048e+04 | 11520 |      1 | 6.048e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.885472190608745 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.3158892526605097, dt = 0.0014914510330974943 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.6%)
   patch tree reduce : 18.46 us   (5.1%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 327.57 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.814583333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.9498900724309674e-27,1.4035208055007707e-27,-7.95588598882693e-15)
    sum a = (3.013409097027741e-26,-6.133330444907716e-26,-2.1822483385613023e-14)
    sum e = 1.2328541285534012e-09
    sum de = 6.396457853031092e-11
Info: cfl dt = 0.0021975985079222002 cfl multiplier : 0.6091197656772894       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9433e+04 | 11520 |      1 | 3.914e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.717886059875047 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.3173807036936072, dt = 0.0021975985079222002 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.9%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 288.25 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.800954861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.741858332485201e-27,1.1372401783701896e-27,-8.00318611520923e-15)
    sum a = (-5.7560995564727255e-25,-4.8463074137765736e-26,-2.0516157055204368e-14)
    sum e = 1.2329945329288933e-09
    sum de = 6.32402554558716e-11
Info: cfl dt = 0.0026721937418160433 cfl multiplier : 0.7394131771181929       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9606e+04 | 11520 |      1 | 3.891e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.33203155188342 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.3195783022015293, dt = 0.0026721937418160433 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (2.0%)
   patch tree reduce : 1.93 us    (0.7%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 266.49 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.779340277777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.166121541986532e-27,6.878916200873342e-28,-8.056573871300542e-15)
    sum a = (-4.929298209232271e-25,-9.10679744786587e-26,-1.8914687526825625e-14)
    sum e = 1.2331628991495334e-09
    sum de = 6.234263259215593e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010072585603644093
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.976119219502732e-27,7.821993421960817e-28,-8.054434152875765e-15)
    sum a = (1.6886629770531012e-25,-8.902648967065758e-26,-1.8925386118584445e-14)
    sum e = 1.2331611658604749e-09
    sum de = 6.233879278342577e-11
Info: cfl dt = 0.0014961839096116949 cfl multiplier : 0.4131377257060643       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.8036e+04 | 11520 |      1 | 6.387e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.061319253923235 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.3222504959433454, dt = 0.0014961839096116949 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (2.1%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 266.44 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.755815972222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.913770467513019e-27,6.324164894351298e-28,-8.082764305422197e-15)
    sum a = (4.0563415532891835e-26,-3.183828698391313e-25,-1.8020784197068968e-14)
    sum e = 1.2332545953385482e-09
    sum de = 6.182931000509181e-11
Info: cfl dt = 0.0022035153335152723 cfl multiplier : 0.6087584838040428       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9661e+04 | 11520 |      1 | 3.884e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.868068822589606 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.3237466798529571, dt = 0.0022035153335152723 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (2.1%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 941.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.5%)
   LB compute        : 267.59 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.746701388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.715446875431388e-27,-2.108054964783766e-28,-8.121796654304394e-15)
    sum a = (-1.1179348329032226e-25,4.2072339086631793e-26,-1.6681697399770516e-14)
    sum e = 1.2333906487738687e-09
    sum de = 6.10689053953323e-11
Info: cfl dt = 0.0026738624207159095 cfl multiplier : 0.7391723225360286       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9708e+04 | 11520 |      1 | 3.878e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.456621015675488 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.3259501951864725, dt = 0.0026738624207159095 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (1.9%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 306.85 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.730295138888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.325673312605636e-27,3.716833753697693e-28,-8.164925868949583e-15)
    sum a = (-4.0235002759430786e-25,1.073554728381459e-25,-1.504622848385935e-14)
    sum e = 1.2335532701429706e-09
    sum de = 6.013084454775401e-11
Info: cfl dt = 0.002987917471823831 cfl multiplier : 0.8261148816906857        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9565e+04 | 11520 |      1 | 3.897e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.70369411672794 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.3286240576071884, dt = 0.002987917471823831 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.1%)
   patch tree reduce : 1.99 us    (0.7%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.55 us    (0.5%)
   LB compute        : 276.36 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 7.51 us    (2.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.712152777777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.885911362198884e-27,7.1008167234821595e-28,-8.20769624848671e-15)
    sum a = (3.371112739473155e-25,1.480964087891248e-25,-1.3205817101534055e-14)
    sum e = 1.2337318163574662e-09
    sum de = 5.906367767587057e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011575012837255259
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.762539966491745e-27,8.265794467178451e-28,-8.204946749823216e-15)
    sum a = (2.744465663625855e-25,-1.7428067045696525e-25,-1.321956459485268e-14)
    sum e = 1.2337295742649445e-09
    sum de = 5.905972148572072e-11
Info: cfl dt = 0.0016005134437111113 cfl multiplier : 0.44203829389689525      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0739e+04 | 11520 |      1 | 5.555e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.364891427575415 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.3316119750790123, dt = 0.0016005134437111113 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.9%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 299.83 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.37 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.6884548611111105
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.393630347654586e-27,-1.3868782663051092e-28,-8.22612537886528e-15)
    sum a = (-7.588997873221558e-26,2.4242632095013312e-25,-1.2225631254677938e-14)
    sum e = 1.2338242753933295e-09
    sum de = 5.848119237202566e-11
Info: cfl dt = 0.0022753193438393 cfl multiplier : 0.6280255292645968          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9495e+04 | 11520 |      1 | 3.906e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.752321293795312 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.3332124885227234, dt = 0.0022753193438393 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (2.0%)
   patch tree reduce : 2.24 us    (0.7%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 306.53 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (61.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.678211805555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.81524134061134e-27,6.379640025003502e-28,-8.253147192312466e-15)
    sum a = (-4.300432128158883e-26,-2.715174794641491e-25,-1.080833340590561e-14)
    sum e = 1.2339570665806758e-09
    sum de = 5.764904546552817e-11
Info: cfl dt = 0.0027281118194401443 cfl multiplier : 0.7520170195097311       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8518e+04 | 11520 |      1 | 4.040e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.277527158236172 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.3354878078665628, dt = 0.0027281118194401443 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (1.9%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 322.40 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.660416666666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.934512871513579e-27,-4.438010452176349e-28,-8.28102113182082e-15)
    sum a = (-4.088295228544853e-25,1.5803755220199981e-25,-9.101965366903604e-15)
    sum e = 1.2341135617480383e-09
    sum de = 5.6637166267023876e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01005072564965962
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.533644282557386e-27,9.985523517396786e-29,-8.278693550412414e-15)
    sum a = (2.5372105755092193e-25,1.4173341130331695e-25,-9.113603273836372e-15)
    sum e = 1.2341116441139001e-09
    sum de = 5.6634312776090426e-11
Info: cfl dt = 0.0015176123631936208 cfl multiplier : 0.4173390065032437       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0555e+04 | 11520 |      1 | 5.605e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.523482396125658 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.338215919686003, dt = 0.0015176123631936208 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (1.9%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 326.13 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.6421875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.288227599415398e-27,2.829231663262423e-28,-8.292540342170403e-15)
    sum a = (-6.812346044090697e-26,1.4071960329064792e-25,-8.159193795908297e-15)
    sum e = 1.2341977524392144e-09
    sum de = 5.606563872593791e-11
Info: cfl dt = 0.0022258118592238083 cfl multiplier : 0.6115593376688291       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9657e+04 | 11520 |      1 | 3.884e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.064745492848068 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.3397335320491968, dt = 0.0022258118592238083 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 13.56 us   (3.7%)
   patch tree reduce : 2.18 us    (0.6%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 328.32 us  (90.2%)
   LB move op cnt    : 0
   LB apply          : 7.25 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.633072916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.535091930817707e-27,5.769413587829254e-28,-8.309976960671364e-15)
    sum a = (-4.883142900529638e-25,-3.0614505601725505e-25,-6.756714167756339e-15)
    sum e = 1.2343223059762894e-09
    sum de = 5.522325034032584e-11
Info: cfl dt = 0.002701744585518807 cfl multiplier : 0.7410395584458861        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9406e+04 | 11520 |      1 | 3.918e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.453990235369723 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.3419593439084205, dt = 0.002701744585518807 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    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   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.63 us    (0.4%)
   LB compute        : 354.53 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.619878472222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.529422877764455e-27,-7.378192376743181e-28,-8.326671048695777e-15)
    sum a = (3.807812967967308e-25,-6.526427220709235e-25,-5.050380309551049e-15)
    sum e = 1.234470742780353e-09
    sum de = 5.4187991753376546e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012380548817401835
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.361671377535552e-27,-1.1205976391745282e-27,-8.32436600956597e-15)
    sum a = (2.356583550105642e-25,-5.322173084511183e-25,-5.061905505112033e-15)
    sum e = 1.2344688161579662e-09
    sum de = 5.41856313674597e-11
Info: cfl dt = 0.0015122482665975252 cfl multiplier : 0.4136798528152954       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0767e+04 | 11520 |      1 | 5.547e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.533323707290517 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.3446610884939394, dt = 0.0015122482665975252 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.6%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 326.35 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.59 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.604861111111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.995535515231004e-27,-1.7363715894139968e-27,-8.33203643645714e-15)
    sum a = (2.0319430855289417e-25,1.5652862864825984e-25,-4.1031360599969705e-15)
    sum e = 1.2345509178073582e-09
    sum de = 5.360082517511813e-11
Info: cfl dt = 0.002229416057353877 cfl multiplier : 0.6091199018768636        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6134e+04 | 11520 |      1 | 4.408e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.350436464373882 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.3461733367605369, dt = 0.002229416057353877 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.7%)
   patch tree reduce : 1.88 us    (0.5%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 337.98 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.598263888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.701517322774321e-27,-8.76507064304829e-28,-8.34045908516003e-15)
    sum a = (2.678339307888427e-25,-1.2492999422876425e-26,-2.68873548422101e-15)
    sum e = 1.2346701707979129e-09
    sum de = 5.273099498878078e-11
Info: cfl dt = 0.0027060262327362416 cfl multiplier : 0.7394132679179091       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5337e+04 | 11520 |      1 | 4.547e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.65212559871612 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.3484027528178908, dt = 0.0027060262327362416 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.10 us    (2.1%)
   patch tree reduce : 3.61 us    (0.9%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 363.84 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.56 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.586111111111112
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.8777116325890855e-27,-1.1649777436962919e-27,-8.346158230234714e-15)
    sum a = (-1.4219385488773025e-25,-2.8290097627398143e-25,-9.709562645728862e-16)
    sum e = 1.2348120693758078e-09
    sum de = 5.16634168658373e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012728362474233626
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.5628294961438094e-27,-1.5643986843921633e-27,-8.343834052418182e-15)
    sum a = (4.171618874784464e-25,4.548405962174237e-25,-9.82577153453258e-16)
    sum e = 1.2348100926580301e-09
    sum de = 5.16615139192691e-11
Info: cfl dt = 0.0015124828027323232 cfl multiplier : 0.41313775597263636      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.9334e+04 | 11520 |      1 | 5.958e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.349724325553336 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.351108779050627, dt = 0.0015124828027323232 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.6%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 344.27 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.572829861111112
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.0372634032081893e-27,1.4423533969573136e-28,-8.34533590668034e-15)
    sum a = (4.320347700063025e-25,3.230760658923078e-25,-2.017237102017518e-17)
    sum e = 1.2348883908635074e-09
    sum de = 5.1059841253186545e-11
Info: cfl dt = 0.0022292678076711067 cfl multiplier : 0.6087585039817576       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9496e+04 | 11520 |      1 | 3.906e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.941460230646257 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.3526212618533595, dt = 0.0022292678076711067 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.6%)
   patch tree reduce : 2.25 us    (0.6%)
   gen split merge   : 1.38 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 336.30 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.563715277777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.066448616794613e-27,7.433667507395386e-28,-8.344653065957019e-15)
    sum a = (3.4616481526975525e-26,-3.52927233696259e-25,1.3974080244601593e-15)
    sum e = 1.235001959754265e-09
    sum de = 5.0165962683701284e-11
Info: cfl dt = 0.0027094661316626138 cfl multiplier : 0.7391723359878384       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8482e+04 | 11520 |      1 | 4.045e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.841638735169962 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.3548505296610307, dt = 0.0027094661316626138 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (1.7%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 1.68 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 347.62 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (72.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.553038194444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2772541132729893e-27,-8.986971165657109e-28,-8.339286753072228e-15)
    sum a = (1.1461161992745424e-25,8.051937838514204e-26,3.1183744876036388e-15)
    sum e = 1.2351370660836982e-09
    sum de = 4.9068676312824246e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010953407454170786
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.3937518876426187e-27,-3.9942094069587145e-28,-8.33695530289913e-15)
    sum a = (1.481851689981683e-25,-3.1842724994365308e-27,3.106717237070463e-15)
    sum e = 1.2351350420493674e-09
    sum de = 4.906725524826366e-11
Info: cfl dt = 0.0015176912494852897 cfl multiplier : 0.41305744532927946      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0829e+04 | 11520 |      1 | 5.531e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.635709329374684 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.3575599957926934, dt = 0.0015176912494852897 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.53 us    (2.2%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 320.55 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.54236111111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9693671381532552e-27,-4.271585060219737e-28,-8.332256057798119e-15)
    sum a = (-4.124465013730091e-25,2.696202299958437e-25,4.071550964304236e-15)
    sum e = 1.2352096751641728e-09
    sum de = 4.8447965728738455e-11
Info: cfl dt = 0.002239663195513135 cfl multiplier : 0.608704963552853         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8699e+04 | 11520 |      1 | 4.014e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.611422150316562 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.3590776870421786, dt = 0.002239663195513135 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (2.1%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.5%)
   LB compute        : 296.64 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.536545138888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.3063177868713806e-27,2.829231663262423e-28,-8.32240499510122e-15)
    sum a = (-2.5247841462431254e-25,2.4056235656021902e-25,5.4925329772826175e-15)
    sum e = 1.2353179143111554e-09
    sum de = 4.752753763754662e-11
Info: cfl dt = 0.0027243007817027926 cfl multiplier : 0.7391366423685687       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9595e+04 | 11520 |      1 | 3.892e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.713668006352698 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.3613173502376916, dt = 0.0027243007817027926 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.1%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.5%)
   LB compute        : 288.54 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.529513888888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.908222954447798e-27,9.985523517396786e-28,-8.305850422660644e-15)
    sum a = (6.746663489398487e-25,-1.0298403254275219e-25,7.215920014801074e-15)
    sum e = 1.2354465470562839e-09
    sum de = 4.6397860025149724e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010529389923640917
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.5851410883927238e-27,5.103712020002802e-28,-8.303502910333693e-15)
    sum a = (6.26003564331735e-25,2.0550207398802588e-25,7.204182453439258e-15)
    sum e = 1.2354444596048023e-09
    sum de = 4.639693162596557e-11
Info: cfl dt = 0.001524971252705327 cfl multiplier : 0.4130455474561896        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0830e+04 | 11520 |      1 | 5.530e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.733533999472733 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.3640416510193945, dt = 0.001524971252705327 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (2.1%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.5%)
   LB compute        : 282.34 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.5198784722222225
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7030865110226743e-27,1.1261451522397488e-27,-8.292532727516125e-15)
    sum a = (7.5885540721763405e-25,-6.075636309029422e-26,8.168224589604595e-15)
    sum e = 1.235515381742122e-09
    sum de = 4.576019242562313e-11
Info: cfl dt = 0.002249479174320776 cfl multiplier : 0.6086970316374597        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8076e+04 | 11520 |      1 | 4.103e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.379743843458455 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.3655666222720997, dt = 0.002249479174320776 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (1.9%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 309.77 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.515451388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.48914263804759e-29,9.208871688265925e-28,-8.273423408138881e-15)
    sum a = (-2.5125796174996406e-25,1.0171919956388193e-25,9.585465083532979e-15)
    sum e = 1.23561803837314e-09
    sum de = 4.4814898282173016e-11
Info: cfl dt = 0.0027359258334156457 cfl multiplier : 0.739131354424973        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8002e+04 | 11520 |      1 | 4.114e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.684552185660475 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.3678161014464205, dt = 0.0027359258334156457 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.0%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.4%)
   LB compute        : 313.71 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.507638888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.725276563283556e-27,1.2260003874137166e-27,-8.24560426010351e-15)
    sum a = (-7.351564314030124e-26,-4.970571706437512e-27,1.130090745511838e-14)
    sum e = 1.2357397723583605e-09
    sum de = 4.365587467113546e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011270683264935757
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3924257793703297e-27,1.3036655703268027e-27,-8.24325759855337e-15)
    sum a = (2.957712065852928e-25,9.355326033187745e-26,1.1289174146997373e-14)
    sum e = 1.2357376282856733e-09
    sum de = 4.365547097578689e-11
Info: cfl dt = 0.0015326046545993126 cfl multiplier : 0.4130437848083243       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0879e+04 | 11520 |      1 | 5.517e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.85116150448157 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.3705520272798362, dt = 0.0015326046545993126 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.0%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 298.78 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498611111111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.271585060219737e-28,1.5699461974573837e-27,-8.225971808440253e-15)
    sum a = (5.897006388329325e-25,2.9614843747372783e-25,1.2247942836747434e-14)
    sum e = 1.2358047071435635e-09
    sum de = 4.300208959578807e-11
Info: cfl dt = 0.002261598860849869 cfl multiplier : 0.6086958565388829        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9785e+04 | 11520 |      1 | 3.868e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.265169395922408 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.3720846319344355, dt = 0.002261598860849869 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (2.2%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.5%)
   LB compute        : 279.43 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.4945312500000005
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.217679117815886e-27,2.2633853306099385e-27,-8.19753716819317e-15)
    sum a = (2.5427026134437872e-25,-4.418483206186774e-25,1.365591250599696e-14)
    sum e = 1.235901669071762e-09
    sum de = 4.203237608949948e-11
Info: cfl dt = 0.0027480154401308 cfl multiplier : 0.739130571025922           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9765e+04 | 11520 |      1 | 3.870e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.036438412984197 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.3743462307952854, dt = 0.0027480154401308 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (2.1%)
   patch tree reduce : 2.28 us    (0.8%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.5%)
   LB compute        : 268.81 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490190972222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4312583708268727e-27,2.7737565326102185e-28,-8.158418378478933e-15)
    sum a = (1.116159628722352e-25,3.8153575857360077e-25,1.535514616602381e-14)
    sum e = 1.2360162660916086e-09
    sum de = 4.084559672058614e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.013383850073132586
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3036655703268027e-27,1.3480456748485662e-27,-8.156083618310579e-15)
    sum a = (-7.377082874130137e-26,-2.3375001051612833e-25,1.534347236571154e-14)
    sum e = 1.2360140686904135e-09
    sum de = 4.084576670834689e-11
Info: cfl dt = 0.0015387376434981925 cfl multiplier : 0.41304352367530733      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0890e+04 | 11520 |      1 | 5.515e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.93902222540553 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.377094246235416, dt = 0.0015387376434981925 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (2.1%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 941.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 268.46 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.483854166666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.48769498978727e-28,-6.102264371742481e-29,-8.132490079692654e-15)
    sum a = (2.8206607555766574e-25,7.411477455134504e-26,1.6291208978366808e-14)
    sum e = 1.2360770951422746e-09
    sum de = 4.017740684617709e-11
Info: cfl dt = 0.0022703138289675087 cfl multiplier : 0.6086956824502049       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9535e+04 | 11520 |      1 | 3.900e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.202186422540484 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.3786329838789142, dt = 0.0022703138289675087 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.9%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 270.34 us  (88.1%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.480729166666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7668829112727093e-27,5.2701374119594155e-28,-8.094774763655842e-15)
    sum a = (2.3731151390399985e-25,1.3593626015016158e-25,1.7680659041306923e-14)
    sum e = 1.2361680069124149e-09
    sum de = 3.918630660355218e-11
Info: cfl dt = 0.0027621086411975452 cfl multiplier : 0.7391304549668032       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9804e+04 | 11520 |      1 | 3.865e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.145077853393314 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.3809032977078817, dt = 0.0027621086411975452 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.7%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 316.56 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.4736979166666675
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.346598026588245e-27,9.486247341526947e-28,-8.04436161869111e-15)
    sum a = (2.1282479123411684e-25,2.0081997296097983e-25,1.9356288009603354e-14)
    sum e = 1.236275307888558e-09
    sum de = 3.797292545537427e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012339097951859713
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3937518876426187e-27,1.065122508522324e-27,-8.042047484064227e-15)
    sum a = (5.951815817413702e-25,3.4172680481757895e-27,1.9344717335980453e-14)
    sum e = 1.2362730599761175e-09
    sum de = 3.797373107692367e-11
Info: cfl dt = 0.0015446129417645694 cfl multiplier : 0.4130434849889344       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.9697e+04 | 11520 |      1 | 5.849e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.001275654732066 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.3836654063490792, dt = 0.0015446129417645694 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (1.7%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 338.34 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.61 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.467881944444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.830557771534712e-27,7.988418813917429e-28,-8.012183363041122e-15)
    sum a = (2.2539545583990637e-25,-2.3588025553317297e-25,2.0276429990183382e-14)
    sum e = 1.2363318923735742e-09
    sum de = 3.729170861599962e-11
Info: cfl dt = 0.0022772358968367475 cfl multiplier : 0.6086956566592896       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9733e+04 | 11520 |      1 | 3.874e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.351967655640323 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.3852100192908439, dt = 0.0022772358968367475 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (2.2%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.5%)
   LB compute        : 271.12 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.466232638888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.0469107810783086e-27,5.547513065220437e-30,-7.965289581095533e-15)
    sum a = (6.226750564926028e-25,2.7005293601493086e-25,2.1639182550630417e-14)
    sum e = 1.2364164972696897e-09
    sum de = 3.6281902185310276e-11
Info: cfl dt = 0.0027674381910836932 cfl multiplier : 0.7391304377728597       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9690e+04 | 11520 |      1 | 3.880e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.128132702649793 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.3874872551876807, dt = 0.0027674381910836932 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (2.3%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 271.84 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.460416666666668
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.207667119981669e-27,1.320308109522464e-27,-7.903852826357246e-15)
    sum a = (-3.236641022772212e-25,3.923201239723893e-25,2.3277325403256116e-14)
    sum e = 1.23651594020735e-09
    sum de = 3.5048291673856224e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.013108357113371332
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.8457526624700515e-27,1.5754937105226042e-27,-7.901586096810103e-15)
    sum a = (-5.165622265810662e-25,8.286875016826289e-26,2.326599175535416e-14)
    sum e = 1.2365136650089275e-09
    sum de = 3.504980914589236e-11
Info: cfl dt = 0.0015489067831430162 cfl multiplier : 0.41304347925761986      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.9394e+04 | 11520 |      1 | 5.940e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.77278390885042 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.3902546933787643, dt = 0.0015489067831430162 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (2.0%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 301.64 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.36 us    (63.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.4546875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.727928779828134e-27,1.1483352045006305e-27,-7.865564926949182e-15)
    sum a = (-3.5568434768967353e-25,8.297415291650207e-26,2.417600240578991e-14)
    sum e = 1.236568131690765e-09
    sum de = 3.4356346173438496e-11
Info: cfl dt = 0.0022846892967469364 cfl multiplier : 0.6086956528384132       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9484e+04 | 11520 |      1 | 3.907e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.271184636697619 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.3918036001619074, dt = 0.0022846892967469364 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.3%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.5%)
   LB compute        : 265.61 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.451302083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2147838212952432e-27,1.4922810145442976e-27,-7.809625512180719e-15)
    sum a = (-1.5016008364938678e-25,-2.8336696737145994e-26,2.5505485280278934e-14)
    sum e = 1.2366462944918876e-09
    sum de = 3.3330013859070426e-11
Info: cfl dt = 0.0027751225195850487 cfl multiplier : 0.7391304352256087       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7149e+04 | 11520 |      1 | 4.243e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.383668028836873 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.3940882894586544, dt = 0.0027751225195850487 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.9%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 290.86 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.448003472222221
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0760959946647322e-27,1.2870230311311415e-27,-7.737325937959503e-15)
    sum a = (2.3611325108191226e-25,-1.234210706750243e-25,2.7099311741459295e-14)
    sum e = 1.2367377952792026e-09
    sum de = 3.207835935446584e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.013288008820919666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.442231856969281e-27,1.0762175346527647e-27,-7.735114406106692e-15)
    sum a = (-7.382630387195358e-26,-4.931961015503577e-25,2.7088254081836695e-14)
    sum e = 1.2367355009134616e-09
    sum de = 3.208067053336638e-11
Info: cfl dt = 0.0015494461219953042 cfl multiplier : 0.4130434784085362       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.9800e+04 | 11520 |      1 | 5.818e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.17129317282024 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.3968634119782395, dt = 0.0015494461219953042 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.1%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 299.69 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.440711805555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0788697511973426e-27,-2.7182814019580144e-28,-7.693157959048564e-15)
    sum a = (-4.676442563719524e-25,2.6756765016171214e-25,2.796982914846169e-14)
    sum e = 1.2367853829686635e-09
    sum de = 3.13793869130863e-11
Info: cfl dt = 0.0022823547899806676 cfl multiplier : 0.6086956522723574       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9660e+04 | 11520 |      1 | 3.884e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.361353648398934 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.3984128581002349, dt = 0.0015871418997652764 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (2.0%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 302.00 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.4385416666666675
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9749146512184756e-27,9.486247341526947e-28,-7.64808289474345e-15)
    sum a = (-1.4620470683388462e-25,1.1223728433553989e-25,2.8861793229778365e-14)
    sum e = 1.2368346501039472e-09
    sum de = 3.066031367040743e-11
Info: cfl dt = 0.002770061170006543 cfl multiplier : 0.7391304348482383        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5932e+04 | 11520 |      1 | 4.442e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.861930106717878 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 700                                                     [SPH][rank=0]
Info: time since start : 321.471291036 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[0. 0. 0. ... 0. 0. 0.]
(11520, 3)
[[0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 ...
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]]
compute original rho
Info: Dumping state to _to_trash/dusty_settle/dump/0000014.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.77 us   (68.9%)
Info: dump to _to_trash/dusty_settle/dump/0000014.sham                      [Shamrock Dump][rank=0]
              - took 1.23 ms, bandwidth = 2.41 GB/s
Info: evolve_until (target_time = 1.50s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 1.4000000000000001, dt = 0.002770061170006543 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.77 us    (1.1%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 335.20 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.436892361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.814036772327083e-27,1.103955099978867e-27,-7.567426125237649e-15)
    sum a = (-6.50113056113183e-26,-1.2071388429919671e-25,3.040650892989593e-14)
    sum e = 1.2369193714790204e-09
    sum de = 2.9400307961562713e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.014582744084748455
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9471770858923735e-27,7.7110431606564075e-28,-7.565286646747071e-15)
    sum a = (6.01794217315113e-26,-8.796136716213525e-26,3.039581153738872e-14)
    sum e = 1.2369170887299504e-09
    sum de = 2.9403359528576784e-11
Info: cfl dt = 0.0015476706841505848 cfl multiplier : 0.41304347828274607      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.9697e+04 | 11520 |      1 | 5.849e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.050828222397268 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4027700611700067, dt = 0.0015476706841505848 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (2.0%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 279.31 us  (87.9%)
   LB move op cnt    : 0
   LB apply          : 21.81 us   (6.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.431510416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.03038978187068e-27,8.154844205874043e-28,-7.518258756525751e-15)
    sum a = (4.0179527628778584e-25,3.8087005700577435e-25,3.1247183964837707e-14)
    sum e = 1.2369627653490397e-09
    sum de = 2.8698068096709516e-11
Info: cfl dt = 0.0022808958104196353 cfl multiplier : 0.6086956521884974       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9802e+04 | 11520 |      1 | 3.866e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.413456615431272 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4043177318541573, dt = 0.0022808958104196353 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.7%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 319.77 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (63.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.428993055555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.248068899686566e-27,1.991557190414137e-27,-7.446328363458782e-15)
    sum a = (-3.9276392501760697e-25,-1.3757832401746685e-26,3.248584872763283e-14)
    sum e = 1.2370278672184528e-09
    sum de = 2.7657244768671986e-11
Info: cfl dt = 0.002770663490836933 cfl multiplier : 0.7391304347923316        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9197e+04 | 11520 |      1 | 3.946e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.81136174210431 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.406598627664577, dt = 0.002770663490836933 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.7%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 327.44 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.425868055555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1511089610332407e-27,1.5311136060008407e-27,-7.354908375787565e-15)
    sum a = (4.946606449995759e-25,-2.2340944616255743e-25,3.396436453661393e-14)
    sum e = 1.2371034714760132e-09
    sum de = 2.639123823187154e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.013926636229126406
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4298107225665515e-27,1.1816202828919531e-27,-7.352860140900736e-15)
    sum a = (-1.8595263794618904e-26,2.6193137688744814e-25,3.3954123362235113e-14)
    sum e = 1.237101202238381e-09
    sum de = 2.6395129388153882e-11
Info: cfl dt = 0.0015477775192117027 cfl multiplier : 0.4130434782641106       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0855e+04 | 11520 |      1 | 5.524e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.057208259120898 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4093692911554139, dt = 0.0015477775192117027 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.3%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 1.04 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.5%)
   LB compute        : 274.02 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.423003472222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6781227022291823e-27,2.3188604612621426e-27,-7.300320899498991e-15)
    sum a = (-1.6453923751443817e-25,-3.5947884662628433e-25,3.47692292215911e-14)
    sum e = 1.2371422201643743e-09
    sum de = 2.568674592664831e-11
Info: cfl dt = 0.0022791881148700836 cfl multiplier : 0.6086956521760737       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9790e+04 | 11520 |      1 | 3.867e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.408995775376196 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4109170686746255, dt = 0.0022791881148700836 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.9%)
   patch tree reduce : 1.96 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 271.62 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.419184027777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2260003874137166e-27,9.319821949570335e-28,-7.220444484232406e-15)
    sum a = (-4.202795898211003e-25,-5.581241944656978e-25,3.5951920937137324e-14)
    sum e = 1.2372003984390593e-09
    sum de = 2.4643369298548164e-11
Info: cfl dt = 0.0027643794537304837 cfl multiplier : 0.739130434784049        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9616e+04 | 11520 |      1 | 3.890e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.094206734207756 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4131962567894956, dt = 0.0027643794537304837 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.9%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 286.29 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (61.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.415798611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.766518291308613e-29,-7.988418813917429e-28,-7.119711944221324e-15)
    sum a = (5.140547506755866e-25,-1.5825945272460863e-25,3.7357906445186296e-14)
    sum e = 1.2372674864958125e-09
    sum de = 2.337797438121026e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.014830032579497976
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1344664218375794e-27,-4.992761758698393e-29,-7.117768605495959e-15)
    sum a = (2.2766993619664675e-25,-5.0193898214114515e-25,3.7348189751913864e-14)
    sum e = 1.2372652466130527e-09
    sum de = 2.33826602317681e-11
Info: cfl dt = 0.0015436766029256362 cfl multiplier : 0.4130434782613497       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0983e+04 | 11520 |      1 | 5.490e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.126156856586004 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.415960636243226, dt = 0.0015436766029256362 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (1.7%)
   patch tree reduce : 1.97 us    (0.5%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.54 us    (0.4%)
   LB compute        : 352.83 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.412586805555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0262899170657809e-27,-1.6198738150443678e-27,-7.0601285091269835e-15)
    sum a = (-4.587571404414692e-25,-4.164629008322287e-25,3.812132532713141e-14)
    sum e = 1.2373014994340835e-09
    sum de = 2.2675554147706403e-11
Info: cfl dt = 0.0022741217255554088 cfl multiplier : 0.6086956521742332       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9699e+04 | 11520 |      1 | 3.879e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.326883090613238 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4175043128461515, dt = 0.0022741217255554088 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.9%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 304.85 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.40859375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.575250630546539e-28,-2.28557538287082e-27,-6.9728392393460975e-15)
    sum a = (5.995752120890248e-26,1.456555030404278e-25,3.9241367689431045e-14)
    sum e = 1.2373526933577071e-09
    sum de = 2.1634725130864013e-11
Info: cfl dt = 0.0027610670839031543 cfl multiplier : 0.7391304347828221       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9771e+04 | 11520 |      1 | 3.870e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.157220307447833 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4197784345717068, dt = 0.0027610670839031543 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.6%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.54 us    (0.4%)
   LB compute        : 332.00 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.405989583333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3839829697844665e-28,-1.1871677959571735e-27,-6.863217634355893e-15)
    sum a = (-6.053446256768541e-25,3.2313154102296e-25,4.0570634750946815e-14)
    sum e = 1.2374113908941053e-09
    sum de = 2.0372862928549374e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.013679616801727537
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.73878072598251e-28,-1.01519489093534e-27,-6.861382536591032e-15)
    sum a = (-4.913765172649654e-25,3.2903409492435454e-25,4.056145926203565e-14)
    sum e = 1.2374091815861366e-09
    sum de = 2.037833595707755e-11
Info: cfl dt = 0.0015441673389941476 cfl multiplier : 0.4130434782609407       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0734e+04 | 11520 |      1 | 5.556e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.88984167662655 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.42253950165561, dt = 0.0015441673389941476 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (1.7%)
   patch tree reduce : 2.01 us    (0.5%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.3%)
   LB compute        : 354.80 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.404079861111112
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3896520228377195e-27,-5.547513065220437e-28,-6.798761523047087e-15)
    sum a = (1.7352620868009526e-26,4.814353738520904e-25,4.129175338588238e-14)
    sum e = 1.2374408009404343e-09
    sum de = 1.9672809513813504e-11
Info: cfl dt = 0.0022767581366413864 cfl multiplier : 0.6086956521739605       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7792e+04 | 11520 |      1 | 4.145e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.41107703330616 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.4240836689946041, dt = 0.0022767581366413864 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.4%)
   patch tree reduce : 2.15 us    (0.5%)
   gen split merge   : 1.28 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.3%)
   LB compute        : 396.14 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.403732638888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0845388042505954e-27,6.046789241090277e-28,-6.704186339383089e-15)
    sum a = (-5.877701042862357e-25,-2.136014430632477e-25,4.2348266040579744e-14)
    sum e = 1.2374852108090174e-09
    sum de = 1.8634569527481026e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010083746644613945
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4395796404247033e-27,-1.7197290502183355e-28,-6.7029836274893634e-15)
    sum a = (-2.633071601276228e-25,-2.2766993619664674e-26,4.2342252480696934e-14)
    sum e = 1.237483721469918e-09
    sum de = 1.8638621819874755e-11
Info: cfl dt = 0.001383672588047352 cfl multiplier : 0.3695652173913202        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0930e+04 | 11520 |      1 | 5.504e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.891260903211695 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4263604271312456, dt = 0.001383672588047352 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (1.8%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 322.08 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.408940972222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4257108577616523e-27,-6.657015678264525e-29,-6.644402659128466e-15)
    sum a = (7.239726450635279e-25,-5.747223535568373e-25,4.297317855702215e-14)
    sum e = 1.2375096282207101e-09
    sum de = 1.8008518379475063e-11
Info: cfl dt = 0.002171670374992206 cfl multiplier : 0.5797101449275468        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9731e+04 | 11520 |      1 | 3.875e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.85573240213911 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.427744099719293, dt = 0.002171670374992206 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (2.0%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1.09 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.5%)
   LB compute        : 273.59 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.413975694444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.794255856634715e-28,-1.6808964587617923e-27,-6.5506425827778765e-15)
    sum a = (-3.2251021955965534e-25,-4.00441683099872e-25,4.39453848278435e-14)
    sum e = 1.2375484605254374e-09
    sum de = 1.7021579318128478e-11
Info: cfl dt = 0.0026968364677151108 cfl multiplier : 0.7198067632850312       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9821e+04 | 11520 |      1 | 3.863e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.237915026487862 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.429915770094285, dt = 0.0026968364677151108 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.9%)
   patch tree reduce : 2.31 us    (0.7%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 294.38 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.421961805555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2329347787452422e-27,-2.335503000457804e-27,-6.431073410608255e-15)
    sum a = (3.2943351586505042e-25,1.7272736679870354e-25,4.512088492019851e-14)
    sum e = 1.237593432005204e-09
    sum de = 1.5800397710784703e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012630461083531502
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.965024193372291e-28,-1.802941746196642e-27,-6.429488344850402e-15)
    sum a = (5.151198731841089e-25,3.608102497619372e-26,4.511295959130471e-14)
    sum e = 1.2375913767331767e-09
    sum de = 1.5806791385445393e-11
Info: cfl dt = 0.0015230043718081477 cfl multiplier : 0.4066022544283438       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0571e+04 | 11520 |      1 | 5.600e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.336518294385645 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4326126065620002, dt = 0.0015230043718081477 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.95 us    (1.9%)
   patch tree reduce : 1.94 us    (0.5%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 344.17 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.433072916666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.754097156905882e-28,-1.8084892592618625e-27,-6.3607917968247475e-15)
    sum a = (1.2856916279954885e-25,-6.799032012734168e-26,4.576250634318481e-14)
    sum e = 1.237615587778703e-09
    sum de = 1.5118479679516252e-11
Info: cfl dt = 0.0022636632522812527 cfl multiplier : 0.6044015029522293       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8373e+04 | 11520 |      1 | 4.060e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.503932171573224 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4341356109338084, dt = 0.0022636632522812527 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (1.5%)
   patch tree reduce : 19.87 us   (4.9%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.3%)
   LB compute        : 363.20 us  (90.3%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.437847222222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.602988195872641e-28,-2.119149990914207e-27,-6.256706261611969e-15)
    sum a = (-3.3733317446992435e-25,-3.0995064997999625e-25,4.670636139107427e-14)
    sum e = 1.2376494363804631e-09
    sum de = 1.409914580211835e-11
Info: cfl dt = 0.002757885446929091 cfl multiplier : 0.7362676686348196        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4905e+04 | 11520 |      1 | 4.626e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.617384025550454 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4363992741860896, dt = 0.002757885446929091 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.6%)
   patch tree reduce : 1.99 us    (0.5%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.4%)
   LB compute        : 347.42 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.44453125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.877468552613021e-28,-3.112154829588665e-27,-6.126827182259026e-15)
    sum a = (1.2077490694291414e-25,4.489935174466813e-25,4.782112102225945e-14)
    sum e = 1.2376872916669584e-09
    sum de = 1.2863747873821587e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.014303025393175708
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1095026130440873e-28,-2.1857201476968523e-27,-6.125289992576588e-15)
    sum a = (1.9670371826658627e-25,7.620063946386792e-26,4.7813435074017065e-14)
    sum e = 1.2376851872856477e-09
    sum de = 1.2871203433897921e-11
Info: cfl dt = 0.0015420187552955698 cfl multiplier : 0.41208922287827326      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.9610e+04 | 11520 |      1 | 5.875e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.900810110346605 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4391571596330186, dt = 0.0015420187552955698 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.6%)
   patch tree reduce : 2.26 us    (0.6%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.3%)
   LB compute        : 374.15 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.4546875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.066448616794613e-28,-2.4159419399035003e-27,-6.051571377420394e-15)
    sum a = (-3.6048849400415443e-25,1.9260965362445358e-25,4.8421196954593295e-14)
    sum e = 1.237705168779997e-09
    sum de = 1.2182482725204598e-11
Info: cfl dt = 0.0022738832967438808 cfl multiplier : 0.6080594819188488       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9557e+04 | 11520 |      1 | 3.898e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.243129185078187 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.440699178388314, dt = 0.0022738832967438808 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.7%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 328.84 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.4586805555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2884099093974465e-27,-1.9665933816206448e-27,-5.940998636347618e-15)
    sum a = (-5.016948915662755e-25,7.628939967291145e-26,4.9294549448177735e-14)
    sum e = 1.2377324787129218e-09
    sum de = 1.117187987899854e-11
Info: cfl dt = 0.0027609281679430078 cfl multiplier : 0.7387063212792325       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8905e+04 | 11520 |      1 | 3.986e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.539332555454514 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.442973061685058, dt = 0.0027609281679430078 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.7%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 325.52 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.465538194444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.6669669061047253e-27,-2.041484808001121e-27,-5.803906975426198e-15)
    sum a = (-1.6615911132948253e-25,-8.547608130891649e-26,5.031819363956505e-14)
    sum e = 1.2377622901078637e-09
    sum de = 9.953150236531888e-12
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012433018846452116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.195428295560988e-27,-2.2162314695555648e-27,-5.802493871386806e-15)
    sum a = (-2.6935949688177832e-25,2.084977310432449e-25,5.0311128119098485e-14)
    sum e = 1.2377602316183907e-09
    sum de = 9.961356475984166e-12
Info: cfl dt = 0.0015434386496556982 cfl multiplier : 0.41290210709307756      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0653e+04 | 11520 |      1 | 5.578e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.818895310710328 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.445733989853001, dt = 0.0015434386496556982 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.7%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 319.82 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.474826388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.653098123441674e-27,-1.3286293791202947e-27,-5.7248514854355085e-15)
    sum a = (1.6295264877778513e-25,-1.2044760367206613e-25,5.086703777587516e-14)
    sum e = 1.237775733546216e-09
    sum de = 9.2827660348523e-12
Info: cfl dt = 0.0022752079297238873 cfl multiplier : 0.6086014047287184       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5458e+04 | 11520 |      1 | 4.525e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.27896775366527 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.4472774285026568, dt = 0.0022752079297238873 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.7%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 314.41 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.480989583333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9360820597619327e-27,-1.9943309469467472e-27,-5.60868939150259e-15)
    sum a = (1.1061741052049552e-25,-4.935067622820101e-26,5.166280428573803e-14)
    sum e = 1.2377964605439837e-09
    sum de = 8.288580506364799e-12
Info: cfl dt = 0.002764122281984896 cfl multiplier : 0.7390676031524789        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9605e+04 | 11520 |      1 | 3.891e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.049209693185446 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4495526364323807, dt = 0.002764122281984896 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.3%)
   patch tree reduce : 2.30 us    (0.8%)
   gen split merge   : 1.06 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 267.25 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.487586805555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7169552936857252e-27,-1.9249870336314915e-27,-5.464981815889373e-15)
    sum a = (-6.762973177810235e-26,-2.8190242392224174e-25,5.259147560731923e-14)
    sum e = 1.2378183486916464e-09
    sum de = 7.090853945940787e-12
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.013077847211978045
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.083091155990274e-27,-2.2883491394034305e-27,-5.463698335341984e-15)
    sum a = (-4.0047496817826336e-25,-5.725033483307491e-26,5.258505820424198e-14)
    sum e = 1.2378163409655355e-09
    sum de = 7.099773184081765e-12
Info: cfl dt = 0.0015453253122535578 cfl multiplier : 0.41302253438415965      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0615e+04 | 11520 |      1 | 5.588e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.807352088432715 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4523167587143657, dt = 0.0015453253122535578 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (2.1%)
   patch tree reduce : 1.80 us    (0.6%)
   gen split merge   : 1.04 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 270.22 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.91 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494791666666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.1412792731810725e-27,-2.1385662866424786e-27,-5.382446183096293e-15)
    sum a = (4.860730947746147e-25,1.4645434492181953e-26,5.308717581827395e-14)
    sum e = 1.2378274332789965e-09
    sum de = 6.433570074082666e-12
Info: cfl dt = 0.002276298409603061 cfl multiplier : 0.6086816895894397        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9700e+04 | 11520 |      1 | 3.879e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.342371177230314 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4538620840266192, dt = 0.002276298409603061 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.6%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.4%)
   LB compute        : 334.85 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.4996527777777775
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.219065996082191e-27,-1.944403329359763e-27,-5.261215961681149e-15)
    sum a = (2.0229561143632845e-25,-3.3577987081166263e-25,5.3802390347644754e-14)
    sum e = 1.2378416849279878e-09
    sum de = 5.459482118620552e-12
Info: cfl dt = 0.002761018111638221 cfl multiplier : 0.7391211263929597        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8332e+04 | 11520 |      1 | 4.066e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.153552055876993 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4561383824362222, dt = 0.002761018111638221 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (1.9%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 312.43 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.74 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505815972222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.116437004375613e-27,-3.2036887951648024e-27,-5.111852566634408e-15)
    sum a = (3.83000302022819e-26,6.995192074720362e-25,5.4630827926201304e-14)
    sum e = 1.2378557501343062e-09
    sum de = 4.289763000277613e-12
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.014397296541794873
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3411112835170406e-27,-1.852869363783626e-27,-5.110708901056575e-15)
    sum a = (-2.025507970373286e-25,2.410727277622193e-25,5.462510959801142e-14)
    sum e = 1.2378538073415745e-09
    sum de = 4.299309675222996e-12
Info: cfl dt = 0.0015411249061080567 cfl multiplier : 0.4130403754643199       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0593e+04 | 11520 |      1 | 5.594e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.768008455686047 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4588994005478604, dt = 0.0015411249061080567 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.10 us    (2.5%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 266.64 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.514409722222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.941629572827153e-27,-2.15798258237075e-27,-5.026532678358812e-15)
    sum a = (-6.0778553142555105e-25,-1.9669262324045582e-25,5.506994861698866e-14)
    sum e = 1.2378605469401382e-09
    sum de = 3.6504364813689764e-12
Info: cfl dt = 0.0022696488634602664 cfl multiplier : 0.60869358364288         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9542e+04 | 11520 |      1 | 3.900e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.227400684699079 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4604405254539685, dt = 0.0022696488634602664 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.8%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 317.01 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.51796875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.576759048800877e-27,-3.0178471074799177e-27,-4.901200455824632e-15)
    sum a = (-1.744581908750523e-25,-9.816879120214086e-26,5.570027477666647e-14)
    sum e = 1.237868445062125e-09
    sum de = 2.703060593510143e-12
Info: cfl dt = 0.002753460020016282 cfl multiplier : 0.73912905576192          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6785e+04 | 11520 |      1 | 4.301e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.99788952563615 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.462710174317429, dt = 0.002753460020016282 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.21 us    (2.4%)
   patch tree reduce : 2.29 us    (0.8%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 272.99 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.525173611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.515736405083452e-27,-3.146826786246293e-27,-4.74711666659744e-15)
    sum a = (6.977440032911657e-25,1.8302355104775267e-25,5.642532379485313e-14)
    sum e = 1.2378749062392779e-09
    sum de = 1.567030242188396e-12
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011635710374234188
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.3063785568653967e-27,-2.5934623579905542e-27,-4.746118469854762e-15)
    sum a = (8.698500486265645e-26,1.331403135652905e-26,5.6420332810953256e-14)
    sum e = 1.2378730374956285e-09
    sum de = 1.5771089829562666e-12
Info: cfl dt = 0.0015370758537055376 cfl multiplier : 0.4130430185873067       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0756e+04 | 11520 |      1 | 5.550e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.859890417206106 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4654636343374452, dt = 0.0015370758537055376 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (1.9%)
   patch tree reduce : 1.96 us    (0.5%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 335.38 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (72.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.533506944444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.148213664512598e-27,-2.7210551584906244e-27,-4.659403009869987e-15)
    sum a = (-5.192472229046329e-26,-1.153882717565851e-25,5.680712924850076e-14)
    sum e = 1.2378755690107526e-09
    sum de = 9.475433896634214e-13
Info: cfl dt = 0.002263830629565486 cfl multiplier : 0.608695345724871         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6989e+04 | 11520 |      1 | 4.268e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.963943297818583 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4670007101911506, dt = 0.002263830629565486 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (1.9%)
   patch tree reduce : 2.28 us    (0.7%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 324.50 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (62.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.5390625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.3992386307138225e-27,-3.224491969159379e-27,-4.530504022966633e-15)
    sum a = (1.4059617112494676e-25,-7.651130019552027e-26,5.735176638304886e-14)
    sum e = 1.237877335787245e-09
    sum de = 2.942993990855746e-14
Info: cfl dt = 0.0027466239686181016 cfl multiplier : 0.7391302304832473       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8679e+04 | 11520 |      1 | 4.017e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.288837396436698 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4692645408207161, dt = 0.0027466239686181016 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (1.9%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.4%)
   LB compute        : 319.08 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.546440972222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.8222972719308976e-27,-3.445699052635044e-27,-4.372363803664385e-15)
    sum a = (6.3605565800591445e-25,1.6580407049330843e-25,5.797256215524029e-14)
    sum e = 1.2378764655290688e-09
    sum de = -1.0698555467666046e-12
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010599187048566609
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9208263988325765e-27,-3.1059138773902923e-27,-4.371511257390186e-15)
    sum a = (-1.2337669057050252e-25,-1.759227343242705e-25,5.796829942398714e-14)
    sum e = 1.2378746708928446e-09
    sum de = -1.0593140978046003e-12
Info: cfl dt = 0.0015334605734205879 cfl multiplier : 0.4130434101610825       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0682e+04 | 11520 |      1 | 5.570e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.751933205390493 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4720111647893341, dt = 0.0015334605734205879 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (2.2%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 279.01 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.557204861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.283434295477346e-27,-3.772655603916474e-27,-4.282625009774299e-15)
    sum a = (-2.0148567452880627e-25,-2.288238189142126e-25,5.829666599685367e-14)
    sum e = 1.2378731483977602e-09
    sum de = -1.6679460874104223e-12
Info: cfl dt = 0.002258693932094038 cfl multiplier : 0.608695606774055         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9153e+04 | 11520 |      1 | 3.952e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.970306927315331 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4735446253627547, dt = 0.002258693932094038 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.2%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1.35 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 267.66 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.56015625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.8277840150021014e-27,-4.3086840538433986e-27,-4.150698915430199e-15)
    sum a = (-4.0829696160022415e-26,8.876020904352699e-26,5.875517066191541e-14)
    sum e = 1.2378690135969495e-09
    sum de = -2.5545237267244034e-12
Info: cfl dt = 0.0027408595248657693 cfl multiplier : 0.7391304045160366       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9271e+04 | 11520 |      1 | 3.936e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.660653244299784 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4758033192948488, dt = 0.0027408595248657693 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (2.1%)
   patch tree reduce : 1.99 us    (0.7%)
   gen split merge   : 1.03 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.55 us    (0.5%)
   LB compute        : 270.47 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.56640625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.740063964658304e-27,-3.6833753155230825e-27,-3.98914143543336e-15)
    sum a = (2.149772263034224e-25,2.021957562011545e-25,5.927140446714877e-14)
    sum e = 1.2378610939646514e-09
    sum de = -3.6145557658497485e-12
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011072199286346595
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.482104607125553e-27,-3.450379766783824e-27,-3.988433973262264e-15)
    sum a = (9.37307807499645e-26,2.025507970373286e-25,5.926786715666847e-14)
    sum e = 1.237859373368289e-09
    sum de = -3.6036068443231564e-12
Info: cfl dt = 0.0015308158040166124 cfl multiplier : 0.41304346817201215      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0718e+04 | 11520 |      1 | 5.561e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.744943439053515 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4785441788197144, dt = 0.0015308158040166124 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.80 us    (1.8%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 346.14 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 us    (71.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.57421875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.422772221295188e-27,-3.239400910522159e-27,-3.897710633184578e-15)
    sum a = (2.4675338114100505e-25,-7.46473358056062e-26,5.953777121290362e-14)
    sum e = 1.2378539541643153e-09
    sum de = -4.1900910249850855e-12
Info: cfl dt = 0.0022553016295773797 cfl multiplier : 0.608695645448008        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9281e+04 | 11520 |      1 | 3.934e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.007640523266687 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.480074994623731, dt = 0.0022553016295773797 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.8%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 309.76 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.57795138888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.7637016651795065e-27,-3.6648258187112514e-27,-3.7632284140482635e-15)
    sum a = (2.1621986923003176e-25,3.491826623772352e-25,5.991023513115978e-14)
    sum e = 1.2378441488302796e-09
    sum de = -5.043528560945402e-12
Info: cfl dt = 0.0027378805162809054 cfl multiplier : 0.739130430298672        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9210e+04 | 11520 |      1 | 3.944e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.586474609335884 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4823302962533085, dt = 0.0027378805162809054 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (2.1%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 273.23 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.583333333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0810108385908165e-27,-2.1676907302348857e-27,-3.598781339316865e-15)
    sum a = (3.143886604321726e-25,4.960808083442724e-25,6.03222307306105e-14)
    sum e = 1.2378294564241316e-09
    sum de = -6.062683114597111e-12
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010767796259848724
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9707540164195602e-27,-2.0823977168571215e-27,-3.598217341953608e-15)
    sum a = (9.852383203831496e-26,-4.615530870263404e-26,6.031941074349876e-14)
    sum e = 1.2378278088594234e-09
    sum de = -6.051354928622003e-12
Info: cfl dt = 0.0015302506919404868 cfl multiplier : 0.41304347676622405      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.9876e+04 | 11520 |      1 | 5.796e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.005995949424634 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4850681767695895, dt = 0.0015302506919404868 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.9%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.5%)
   LB compute        : 292.94 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (64.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.590625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1025074517185458e-27,-2.7598877499471673e-27,-3.5059173823203776e-15)
    sum a = (-3.514904278123669e-26,1.0935257754162526e-25,6.053112331084082e-14)
    sum e = 1.2378186418592724e-09
    sum de = -6.614985472618486e-12
Info: cfl dt = 0.0022553970483990093 cfl multiplier : 0.6086956511774827       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9459e+04 | 11520 |      1 | 3.910e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.087548668076186 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.48659842746153, dt = 0.0022553970483990093 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.8%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 323.53 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.59375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.3077654351317017e-27,-2.4464532617622128e-27,-3.369233678817973e-15)
    sum a = (-1.4219385488773025e-25,7.828650437639081e-26,6.081802232754835e-14)
    sum e = 1.2378033796523597e-09
    sum de = -7.43442179402756e-12
Info: cfl dt = 0.0027398780781195255 cfl multiplier : 0.7391304341183217       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9222e+04 | 11520 |      1 | 3.942e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.595835288878167 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.488853824509929, dt = 0.0027398780781195255 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.20 us    (2.4%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 1.10 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 277.62 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.5993055555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.854195472055915e-27,-2.296670409001261e-27,-3.2022761770896077e-15)
    sum a = (-4.567600357379899e-25,-2.0965161376081076e-25,6.112643373715726e-14)
    sum e = 1.2377821611825305e-09
    sum de = -8.41194952452987e-12
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010734808321479376
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.264711438882227e-27,-2.524118444675299e-27,-3.2018536722599546e-15)
    sum a = (1.3154262980250702e-25,-1.5373268206338874e-25,6.11243212130524e-14)
    sum e = 1.2377805828829804e-09
    sum de = -8.400258284010793e-12
Info: cfl dt = 0.001532868973517442 cfl multiplier : 0.4130434780394405        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0729e+04 | 11520 |      1 | 5.557e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.748713276604352 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4915937025880486, dt = 0.001532868973517442 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (2.1%)
   patch tree reduce : 1.94 us    (0.7%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 268.99 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.606423611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2495165479468872e-27,-2.7723696543439135e-27,-3.108160990774019e-15)
    sum a = (-1.0136415872770783e-25,5.668226949519634e-25,6.127819245044118e-14)
    sum e = 1.2377677960365729e-09
    sum de = -8.940754927092183e-12
Info: cfl dt = 0.0022604985819741383 cfl multiplier : 0.6086956520262937       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8538e+04 | 11520 |      1 | 4.037e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.670132539316791 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.493126571561566, dt = 0.0022604985819741383 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (2.0%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 290.87 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.611371527777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.6739012974362507e-27,-9.51398490685305e-28,-2.9695237914113127e-15)
    sum a = (-4.498367394325948e-25,2.0290583787350271e-25,6.148001830898781e-14)
    sum e = 1.2377472560361598e-09
    sum de = -9.725903684076168e-12
Info: cfl dt = 0.0027483840077016717 cfl multiplier : 0.7391304346841959       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7751e+04 | 11520 |      1 | 4.151e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.60349743183952 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.49538707014354, dt = 0.0027483840077016717 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.39 us    (2.2%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.5%)
   LB compute        : 316.04 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.51 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.617274305555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.2660375471545165e-27,-6.324164894351298e-28,-2.800324978764603e-15)
    sum a = (-3.5850248432680553e-25,-1.140568686209322e-25,6.168534691504463e-14)
    sum e = 1.2377197112692999e-09
    sum de = -1.0661624130903331e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010881474197262273
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.2161099295675324e-27,-1.0942469521147312e-27,-2.8000428178349372e-15)
    sum a = (-3.305430184780945e-25,2.734702040631067e-25,6.168393611034684e-14)
    sum e = 1.237718195704441e-09
    sum de = -1.0649580541695525e-11
Info: cfl dt = 0.0015391763814081552 cfl multiplier : 0.41304347822806536      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.8819e+04 | 11520 |      1 | 6.121e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.163460872057264 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4981354541512417, dt = 0.0015391763814081552 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.15 us    (1.9%)
   patch tree reduce : 1.89 us    (0.5%)
   gen split merge   : 1.20 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 341.62 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 25.85 us   (6.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.624826388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.634947165991675e-27,-2.080317399457664e-28,-2.7051022989794093e-15)
    sum a = (-8.600864256317766e-26,4.049684537610919e-26,6.178013984880741e-14)
    sum e = 1.2377018915338078e-09
    sum de = -1.11668488827619e-11
Info: cfl dt = 0.0022710606895764533 cfl multiplier : 0.6086956521520436       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8970e+04 | 11520 |      1 | 3.977e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.934166158014198 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4996746305326498, dt = 0.00032536946735017835 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (1.9%)
   patch tree reduce : 2.55 us    (0.7%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 330.65 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.627517361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.535091930817707e-27,-3.6336210577193864e-28,-2.6849268905217725e-15)
    sum a = (-3.186491504662619e-26,-2.2303221527412245e-25,6.179829616706956e-14)
    sum e = 1.2376977921102207e-09
    sum de = -1.1270955442527086e-11
Info: cfl dt = 0.002758652932268122 cfl multiplier : 0.739130434768029         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5776e+04 | 11520 |      1 | 4.469e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6208125871235133 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 747                                                     [SPH][rank=0]
Info: time since start : 345.926359994 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[0. 0. 0. ... 0. 0. 0.]
(11520, 3)
[[0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 ...
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]]
compute original rho
Info: Dumping state to _to_trash/dusty_settle/dump/0000015.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.48 us   (73.0%)
Info: dump to _to_trash/dusty_settle/dump/0000015.sham                      [Shamrock Dump][rank=0]
              - took 1.24 ms, bandwidth = 2.38 GB/s
Info: evolve_until (target_time = 1.60s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 1.5, dt = 0.002758652932268122 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.23 us    (1.0%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 321.63 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.628732638888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.690422296643879e-27,-9.347559514896437e-28,-2.5144438858351548e-15)
    sum a = (-3.449221723431459e-25,-8.152625200647955e-26,6.193192743302246e-14)
    sum e = 1.237666905954011e-09
    sum de = -1.2185453172554594e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010195938091216042
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.2340785770354825e-27,-8.848283339026596e-28,-2.5142595646936404e-15)
    sum a = (2.032608787096768e-26,-3.5765926234089203e-25,6.193100582739211e-14)
    sum e = 1.2376654192900348e-09
    sum de = -1.21731079828524e-11
Info: cfl dt = 0.0015454993065420956 cfl multiplier : 0.4130434782560097       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0704e+04 | 11520 |      1 | 5.564e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.84819598488828 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.502758652932268, dt = 0.0015454993065420956 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (1.8%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 1.60 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 334.51 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.634114583333332
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.482390556698113e-27,-1.8195842853923033e-27,-2.4185465093283876e-15)
    sum a = (-2.318638560739534e-25,-5.146538820866304e-25,6.198656363570955e-14)
    sum e = 1.2376466923739671e-09
    sum de = -1.2673852812344697e-11
Info: cfl dt = 0.0022779479736097616 cfl multiplier : 0.6086956521706731       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9553e+04 | 11520 |      1 | 3.898e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.273141320848973 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.50430415223881, dt = 0.0022779479736097616 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (1.7%)
   patch tree reduce : 1.92 us    (0.5%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 343.15 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 us    (71.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.637934027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.339481325274671e-27,-3.04558467280602e-27,-2.2773014100275733e-15)
    sum a = (-2.387594148140224e-25,2.2303221527412245e-25,6.204352995420592e-14)
    sum e = 1.2376175162139549e-09
    sum de = -1.3399047672664529e-11
Info: cfl dt = 0.002767343091921632 cfl multiplier : 0.7391304347804487        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9170e+04 | 11520 |      1 | 3.949e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.76480104385855 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.5065821002124198, dt = 0.002767343091921632 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.99 us    (2.3%)
   patch tree reduce : 2.37 us    (0.8%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.5%)
   LB compute        : 281.46 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.643663194444443
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.899780144861935e-27,-1.586588736653045e-27,-2.1055407928554254e-15)
    sum a = (-7.808679390604287e-26,1.4479009100225341e-25,6.207305958864256e-14)
    sum e = 1.2375796809427427e-09
    sum de = -1.4259766433171726e-11
Info: cfl dt = 0.0030954232102377156 cfl multiplier : 0.8260869565202992       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9200e+04 | 11520 |      1 | 3.945e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.251632364016423 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.5093494433043415, dt = 0.0030954232102377156 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (1.9%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 325.44 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.649218749999999
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.96080278857936e-27,-1.371622605375753e-27,-1.9133575441598454e-15)
    sum a = (9.618943854047021e-25,-2.997543209661211e-25,6.205498470966944e-14)
    sum e = 1.237534403883213e-09
    sum de = -1.5196493112079236e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01263326068844634
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.471295530567672e-27,-1.9860096773489164e-27,-1.9133855188597865e-15)
    sum a = (2.567832847629236e-25,-1.9156672116819214e-25,6.205512458275588e-14)
    sum e = 1.2375326831208291e-09
    sum de = -1.518068771216997e-11
Info: cfl dt = 0.001654570414914381 cfl multiplier : 0.44202898550676634       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0466e+04 | 11520 |      1 | 5.629e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.797157505592377 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.5124448665145793, dt = 0.001654570414914381 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.41 us    (2.5%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 273.84 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.655381944444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.134223341861514e-27,-2.0387110514685105e-27,-1.8107107291475956e-15)
    sum a = (-9.683738806648795e-26,3.1410018975278113e-26,6.202357155274224e-14)
    sum e = 1.2375076657708788e-09
    sum de = -1.5673618750979772e-11
Info: cfl dt = 0.0023478095445295926 cfl multiplier : 0.6280193236711775       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9318e+04 | 11520 |      1 | 3.929e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.158918878515697 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.5140994369294938, dt = 0.0023478095445295926 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (2.1%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1.36 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 296.30 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.74 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.658680555555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.5114542302965045e-27,-1.8695119029792874e-27,-1.6651172992259843e-15)
    sum a = (-4.0874076264544182e-25,7.146306330616967e-26,6.195274277096e-14)
    sum e = 1.237470535876016e-09
    sum de = -1.6358076236509545e-11
Info: cfl dt = 0.0028067481582953213 cfl multiplier : 0.7520128824474517       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9170e+04 | 11520 |      1 | 3.949e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.4020569785253 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 1.5164472464740233, dt = 0.0028067481582953213 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.30 us    (2.5%)
   patch tree reduce : 2.33 us    (0.8%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.5%)
   LB compute        : 271.79 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.663541666666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.025925297101683e-27,-1.6545457717019953e-27,-1.4913146987964386e-15)
    sum a = (7.23395703704745e-26,-3.084861065307781e-25,6.182828117346949e-14)
    sum e = 1.23742388363496e-09
    sum de = -1.7154574135868016e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010242655409631209
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.354676216210011e-27,-2.1038943299848508e-27,-1.4914893649759607e-15)
    sum a = (4.157528191598804e-25,-3.8676151588103844e-25,6.18291545043667e-14)
    sum e = 1.237422550685699e-09
    sum de = -1.7141432041707947e-11
Info: cfl dt = 0.001555224055221643 cfl multiplier : 0.4173376274824839        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0606e+04 | 11520 |      1 | 5.591e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.073343296594317 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.5192539946323187, dt = 0.001555224055221643 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.2%)
   patch tree reduce : 2.43 us    (0.8%)
   gen split merge   : 1.10 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.5%)
   LB compute        : 272.25 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.667187500000001
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.253494872763754e-27,-2.7987203414037105e-27,-1.3953299509672493e-15)
    sum a = (1.1787355760980384e-25,-1.9395215178623691e-25,6.174160007397152e-14)
    sum e = 1.2373959753007764e-09
    sum de = -1.7575253113641645e-11
Info: cfl dt = 0.002277110503139814 cfl multiplier : 0.6115584183216559        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9075e+04 | 11520 |      1 | 3.962e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.130674876677814 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.5208092186875404, dt = 0.002277110503139814 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.2%)
   patch tree reduce : 1.96 us    (0.7%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 275.61 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.55 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.670486111111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.2313048205028724e-27,-3.223105090893074e-27,-1.2548055883359111e-15)
    sum a = (3.664021429316794e-25,-1.657707854149171e-25,6.158986671861854e-14)
    sum e = 1.2373556912356939e-09
    sum de = -1.8196690742624386e-11
Info: cfl dt = 0.002756439733822705 cfl multiplier : 0.7410389455477707        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8777e+04 | 11520 |      1 | 4.003e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.47791455302428 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.5230863291906802, dt = 0.002756439733822705 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.01 us    (2.6%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 288.51 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.672569444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.820849623670576e-27,-3.5393133356106386e-27,-1.0852095893204524e-15)
    sum a = (-3.64981979586983e-25,-1.5706118990252102e-25,6.136909453965825e-14)
    sum e = 1.2373048895396733e-09
    sum de = -1.8927668080189368e-11
Info: cfl dt = 0.003074781098779486 cfl multiplier : 0.8273592970318472        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9330e+04 | 11520 |      1 | 3.928e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.26485507569835 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.5258427689245029, dt = 0.003074781098779486 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (1.9%)
   patch tree reduce : 2.26 us    (0.7%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 312.36 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.676649305555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.1383232066664136e-27,-3.966471841632613e-27,-8.968173299838606e-16)
    sum a = (1.0988513879588641e-25,7.346016800964903e-26,6.107546672448031e-14)
    sum e = 1.2372457326366215e-09
    sum de = -1.9716068157610098e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012839598627682535
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.209114768241991e-27,-3.655811109980268e-27,-8.97268750611922e-16)
    sum a = (6.0356942149598354e-27,-2.335503000457804e-25,6.107772382754742e-14)
    sum e = 1.2372442725152786e-09
    sum de = -1.970016868355196e-11
Info: cfl dt = 0.0016437633588237666 cfl multiplier : 0.4424530990106157       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0714e+04 | 11520 |      1 | 5.561e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.903638807838536 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.5289175500232823, dt = 0.0016437633588237666 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (1.7%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 341.27 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.678472222222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.497585447633453e-27,-4.593340818002522e-27,-7.968679560950773e-16)
    sum a = (2.9841182280433776e-25,1.9612677690780333e-25,6.090010164022542e-14)
    sum e = 1.2372119838901693e-09
    sum de = -2.0113621202471395e-11
Info: cfl dt = 0.002333828752467957 cfl multiplier : 0.6283020660070772        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9399e+04 | 11520 |      1 | 3.918e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.101624421300654 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.530561313382106, dt = 0.002333828752467957 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 24.39 us   (7.8%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 273.98 us  (87.4%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.678906250000001
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.4581201870377735e-27,-3.719607510230303e-27,-6.548835322803474e-16)
    sum a = (-8.627492319030824e-26,1.2071388429919671e-26,6.062415029760262e-14)
    sum e = 1.237164773351213e-09
    sum de = -2.068528325836755e-11
Info: cfl dt = 0.002794061018771022 cfl multiplier : 0.7522013773380515        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9619e+04 | 11520 |      1 | 3.889e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.602055608329174 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.532895142134574, dt = 0.002794061018771022 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.0%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 297.82 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.6800347222222225
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.122088157031345e-27,-3.786177667012948e-27,-4.858179687270549e-16)
    sum a = (-2.2207804302690455e-25,2.618370691653394e-25,6.025734912780658e-14)
    sum e = 1.237106371064543e-09
    sum de = -2.134745660420738e-11
Info: cfl dt = 0.003101910558522535 cfl multiplier : 0.8348009182253676        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9209e+04 | 11520 |      1 | 3.944e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.50362187202136 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.5356892031533451, dt = 0.003101910558522535 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (1.9%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 309.79 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.682118055555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.114052837006074e-27,-2.651711245175369e-27,-2.9941749366339846e-16)
    sum a = (5.705506237317915e-25,1.814036772327083e-25,5.980429297356378e-14)
    sum e = 1.237039274552573e-09
    sum de = -2.2054801147986163e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011438647711813124
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.942140701978257e-27,-2.8847067939146275e-27,-3.001201634983467e-16)
    sum a = (7.39727582168754e-25,-6.027095569708744e-26,5.980780632264357e-14)
    sum e = 1.2370379334116932e-09
    sum de = -2.2038595807215215e-11
Info: cfl dt = 0.001654798484801707 cfl multiplier : 0.4449336394084559        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0793e+04 | 11520 |      1 | 5.540e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.155925522164612 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.5387911137118677, dt = 0.001654798484801707 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (1.9%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 311.74 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.74 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.6839409722222225
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.264017999749075e-27,-3.3090915434039906e-27,-2.0114484716782272e-16)
    sum a = (3.242410436360041e-25,2.003484343504361e-26,5.954597540342263e-14)
    sum e = 1.2370015570713553e-09
    sum de = -2.2407768123280705e-11
Info: cfl dt = 0.002344110779204933 cfl multiplier : 0.6299557596056373        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8736e+04 | 11520 |      1 | 4.009e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.860156322253983 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.5404459121966694, dt = 0.002344110779204933 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (1.7%)
   patch tree reduce : 2.01 us    (0.5%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.4%)
   LB compute        : 359.70 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.6839409722222225
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.9831751508222902e-27,-3.2286526039582944e-27,-6.177912307116325e-17)
    sum a = (1.1103902151345228e-25,-2.9610405736920604e-25,5.915255949157989e-14)
    sum e = 1.2369487940602263e-09
    sum de = -2.2915051380157514e-11
Info: cfl dt = 0.002805598569806516 cfl multiplier : 0.7533038397370916        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9505e+04 | 11520 |      1 | 3.904e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.613511025792132 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.5427900229758742, dt = 0.002805598569806516 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (2.0%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 310.09 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.684982638888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.8500348372569996e-27,-4.401951617252417e-27,1.0371810799798603e-16)
    sum a = (9.381954095900804e-26,-4.382535321524145e-25,5.864716317402443e-14)
    sum e = 1.2368839677028236e-09
    sum de = -2.3499665526356534e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010261213219309414
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.9221525071048653e-27,-4.4407842087089596e-27,1.0300913840584733e-16)
    sum a = (3.406616823090566e-25,-5.231304820502872e-26,5.865070802216548e-14)
    sum e = 1.2368829533195038e-09
    sum de = -2.348643117791339e-11
Info: cfl dt = 0.0015581127040677643 cfl multiplier : 0.41776794657903055      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0565e+04 | 11520 |      1 | 5.602e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.030358025460675 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.5455956215456808, dt = 0.0015581127040677643 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.99 us    (2.3%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 287.50 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.686545138888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9832359208163064e-27,-4.149539772784887e-27,1.943985243881702e-16)
    sum a = (4.654585362242556e-25,1.2688271882772184e-25,5.835339226860073e-14)
    sum e = 1.2368464363399803e-09
    sum de = -2.380326557476663e-11
Info: cfl dt = 0.002283748826626866 cfl multiplier : 0.6118452977193537        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9162e+04 | 11520 |      1 | 3.950e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.199387089049491 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.5471537342497486, dt = 0.002283748826626866 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.8%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 317.80 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.6864583333333325
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.210319336526247e-28,-3.7112862406324724e-27,3.2743138978514084e-16)
    sum a = (3.0950684893477863e-25,3.6950875024820285e-25,5.789742777123099e-14)
    sum e = 1.2367918965366572e-09
    sum de = -2.425346800698387e-11
Info: cfl dt = 0.002770203599956851 cfl multiplier : 0.7412301984795692        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9559e+04 | 11520 |      1 | 3.897e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.09571948389058 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.5494374830763755, dt = 0.002770203599956851 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.8%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 324.37 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.686197916666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5394348755986712e-28,-2.4575482878926536e-27,4.872983984322658e-16)
    sum a = (-1.7405876993435644e-25,5.696408315890954e-25,5.731248411469297e-14)
    sum e = 1.2367242546755207e-09
    sum de = -2.4777663770686806e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011249916193720668
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.667989164406932e-28,-2.1357925301098683e-27,4.864881919205571e-16)
    sum a = (-9.364202054092098e-27,1.0657882100901504e-25,5.731653514731088e-14)
    sum e = 1.23672334395741e-09
    sum de = -2.4764822168753222e-11
Info: cfl dt = 0.0015489901331812092 cfl multiplier : 0.41374339949318967      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0762e+04 | 11520 |      1 | 5.548e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.973828654691157 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.5522076866763324, dt = 0.0015489901331812092 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.86 us    (1.9%)
   patch tree reduce : 1.92 us    (0.5%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 331.06 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.686197916666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.228531063970262e-28,-2.6739012974362507e-27,5.752765504241559e-16)
    sum a = (-5.682428582966598e-25,9.814660114987997e-26,5.697376761148079e-14)
    sum e = 1.2366850581353212e-09
    sum de = -2.5050112075030775e-11
Info: cfl dt = 0.0022828554947012056 cfl multiplier : 0.6091622663287931       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9347e+04 | 11520 |      1 | 3.926e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.205459723660152 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.5537566768095135, dt = 0.0022828554947012056 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.6%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 319.86 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.685763888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.268932843675159e-27,-2.464482679224179e-27,7.05073957105153e-16)
    sum a = (-1.8672928977531992e-25,1.7104092282687653e-25,5.644951368071533e-14)
    sum e = 1.2366277182659394e-09
    sum de = -2.5456537026729262e-11
Info: cfl dt = 0.0027752840197643675 cfl multiplier : 0.7394415108858622       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8517e+04 | 11520 |      1 | 4.040e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.34385680892858 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.5560395323042147, dt = 0.0027752840197643675 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.7%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 1.51 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.4%)
   LB compute        : 309.66 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.6852430555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4409057486969924e-27,-1.980462164283696e-27,8.611389923632655e-16)
    sum a = (5.410822343293406e-25,-1.183173586550215e-25,5.578193197448994e-14)
    sum e = 1.236556664297781e-09
    sum de = -2.5928761007492053e-11
Info: cfl dt = 0.0031072080199496424 cfl multiplier : 0.8262943405905748       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9491e+04 | 11520 |      1 | 3.906e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.576524165227873 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.558814816323979, dt = 0.0031072080199496424 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.2%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.5%)
   LB compute        : 271.87 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.684548611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.772308884349897e-28,-2.5546297665340113e-27,1.0335386943419426e-15)
    sum a = (-1.648720882983514e-26,3.266375692801793e-25,5.4995896264691504e-14)
    sum e = 1.2364754893440975e-09
    sum de = -2.6429715197630124e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011836754816113725
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.575250630546539e-28,-2.0872517907891896e-27,1.0323175061113189e-15)
    sum a = (3.7192746594463897e-25,-1.1747413666910798e-25,5.5002002205512527e-14)
    sum e = 1.2364744852714174e-09
    sum de = -2.6413764030073874e-11
Info: cfl dt = 0.0016661344254704493 cfl multiplier : 0.44209811353019157      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0814e+04 | 11520 |      1 | 5.535e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.210836434074622 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.5619220243439287, dt = 0.0016661344254704493 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (2.3%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 270.64 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.684375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.770861236089576e-28,-2.8472610807243892e-27,1.1239677216697726e-15)
    sum a = (-1.1292517595562723e-25,-1.393091480938156e-25,5.456281692654383e-14)
    sum e = 1.236430564763546e-09
    sum de = -2.667406600637285e-11
Info: cfl dt = 0.00236977867083587 cfl multiplier : 0.6280654090201278         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7146e+04 | 11520 |      1 | 4.244e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.133931838202672 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.5635881587693992, dt = 0.00236977867083587 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (1.9%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.64 us    (0.5%)
   LB compute        : 292.85 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.683680555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.664253919566131e-29,-3.29522276074094e-27,1.2529036505868932e-15)
    sum a = (-1.6886629770531012e-25,-1.2515189475137305e-25,5.391933296317064e-14)
    sum e = 1.2363672018357047e-09
    sum de = -2.7028578475301928e-11
Info: cfl dt = 0.0028423086710037395 cfl multiplier : 0.7520436060134186       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9608e+04 | 11520 |      1 | 3.891e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.926516985986954 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.565957937440235, dt = 0.0028423086710037395 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.06 us    (2.1%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 312.39 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.682899305555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.797151153155356e-28,-3.616978518523725e-27,1.405396580917218e-15)
    sum a = (2.506255452605289e-25,5.369992647133383e-26,5.311847787353561e-14)
    sum e = 1.2362900145182348e-09
    sum de = -2.7431056722686626e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010704844889742842
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.328507839132262e-29,-3.278580221545278e-27,1.404258442234252e-15)
    sum a = (9.663767759614001e-26,3.8992359832821407e-25,5.312416856694236e-14)
    sum e = 1.2362892579850038e-09
    sum de = -2.741785880012718e-11
Info: cfl dt = 0.0015794068259359594 cfl multiplier : 0.41734786867113954      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0792e+04 | 11520 |      1 | 5.541e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.467601325342656 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.5688002461112387, dt = 0.0015794068259359594 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (1.9%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 288.79 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.681336805555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4423533969573136e-28,-2.1926545390283778e-27,1.4881712040450072e-15)
    sum a = (-2.2376448699873156e-25,-1.794287625814898e-25,5.266469682221665e-14)
    sum e = 1.2362460288918088e-09
    sum de = -2.7633596632428224e-11
Info: cfl dt = 0.0023136597799527066 cfl multiplier : 0.6115652457807598       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9588e+04 | 11520 |      1 | 3.894e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.60346946161878 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.5703796529371747, dt = 0.0023136597799527066 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.9%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.5%)
   LB compute        : 297.42 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.678125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.73878072598251e-28,-3.033102768409274e-27,1.6096565485010793e-15)
    sum a = (-4.357793413253262e-25,-2.600674124975341e-25,5.197499477824162e-14)
    sum e = 1.236181987801566e-09
    sum de = -2.793540086960113e-11
Info: cfl dt = 0.0028024200702537567 cfl multiplier : 0.7410434971871732       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8429e+04 | 11520 |      1 | 4.052e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.554747840266824 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.5726933127171274, dt = 0.0028024200702537567 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (1.8%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.4%)
   LB compute        : 334.20 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.676302083333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.3660143223165163e-27,-3.895741050051052e-27,1.7545144490787163e-15)
    sum a = (5.366275813379686e-25,-1.1481133039780218e-25,5.111350415525814e-14)
    sum e = 1.2361034069472753e-09
    sum de = -2.827909652763152e-11
Info: cfl dt = 0.003128674035270566 cfl multiplier : 0.8273623314581154        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8712e+04 | 11520 |      1 | 4.012e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.145037663023295 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.575495732787381, dt = 0.003128674035270566 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (2.0%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 288.23 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.675086805555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.185477067720787e-28,-3.9040623196488825e-27,1.9132248130756234e-15)
    sum a = (3.263047184962661e-26,1.4410219938216608e-25,5.011878268035739e-14)
    sum e = 1.236014490854438e-09
    sum de = -2.8635281019708645e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012485300425813486
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.883259145654306e-29,-3.646796401249285e-27,1.9116687334498347e-15)
    sum a = (4.888579463333554e-25,-6.213214633046889e-27,5.012656307883465e-14)
    sum e = 1.2360137197390768e-09
    sum de = -2.861959018704197e-11
Info: cfl dt = 0.0016742080601229812 cfl multiplier : 0.4424541104860385       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0617e+04 | 11520 |      1 | 5.588e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.15764833647872 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.5786244068226516, dt = 0.0016742080601229812 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (1.9%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 310.45 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.671527777777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.370235727109448e-27,-3.7404106842248795e-27,1.9956032005482143e-15)
    sum a = (4.269144154471039e-25,3.663577628271577e-26,4.957875052686417e-14)
    sum e = 1.2359658891807958e-09
    sum de = -2.8802008600705213e-11
Info: cfl dt = 0.002378277702275875 cfl multiplier : 0.6283027403240257        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8787e+04 | 11520 |      1 | 4.002e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.061249243792503 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.5802986148827747, dt = 0.002378277702275875 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.87 us    (2.0%)
   patch tree reduce : 2.24 us    (0.7%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 313.80 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.669270833333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.399299400707839e-27,-3.833331528067322e-27,2.113056661337894e-15)
    sum a = (3.4613153019136394e-25,9.7014908484575e-26,4.878509291292734e-14)
    sum e = 1.235897298169841e-09
    sum de = -2.9045695701495603e-11
Info: cfl dt = 0.0028493107156455266 cfl multiplier : 0.7522018268826839       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9443e+04 | 11520 |      1 | 3.913e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.882103695681252 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.5826768925850505, dt = 0.0028493107156455266 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.8%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 305.35 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.668055555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.29244900420833e-27,-3.5511018008742324e-27,2.2511167802341327e-15)
    sum a = (3.0514650366551536e-25,3.0213975158416587e-25,4.7810338977019506e-14)
    sum e = 1.235814299923704e-09
    sum de = -2.9315422714111306e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01136666333057277
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2286526039582944e-27,-3.1350383209826994e-27,2.2497280918179094e-15)
    sum a = (1.659594008591346e-25,1.1097245135666963e-25,4.78172824191028e-14)
    sum e = 1.235813744029156e-09
    sum de = -2.9302625570679616e-11
Info: cfl dt = 0.0015830734639887822 cfl multiplier : 0.41740060896089465      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0675e+04 | 11520 |      1 | 5.572e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.409062295956385 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.585526203300696, dt = 0.0015830734639887822 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.7%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 293.04 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (62.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.665190972222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.248068899686566e-27,-3.2508426562191764e-27,2.3254362547479468e-15)
    sum a = (-3.1814987429039207e-25,-1.156656474098461e-25,4.726345581076058e-14)
    sum e = 1.2357674262223895e-09
    sum de = -2.944478218633114e-11
Info: cfl dt = 0.0023212447589541518 cfl multiplier : 0.6116004059739297       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7449e+04 | 11520 |      1 | 4.197e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.579252967924024 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.5871092767646848, dt = 0.0023212447589541518 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (2.0%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.54 us    (0.5%)
   LB compute        : 300.23 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (60.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.6625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1136024778489866e-27,-3.655117670847115e-27,2.434707929734341e-15)
    sum a = (-2.658146360331025e-25,-4.7974892988026343e-26,4.6438002314170686e-14)
    sum e = 1.2356990248959281e-09
    sum de = -2.963938762040358e-11
Info: cfl dt = 0.002815847327991746 cfl multiplier : 0.7410669373159532        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4034e+04 | 11520 |      1 | 4.793e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.43407860869055 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.589430521523639, dt = 0.002815847327991746 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.93 us    (2.0%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 323.62 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.657204861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4700909622834158e-27,-3.641942327317217e-27,2.5645122146667472e-15)
    sum a = (-2.1934866659881608e-26,1.0970761837779937e-25,4.541567048103782e-14)
    sum e = 1.235615390930554e-09
    sum de = -2.985419989010107e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01010184261650788
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6947652414248435e-27,-3.467195665762773e-27,2.5630728494869867e-15)
    sum a = (3.4519954799640694e-25,1.8149243744175182e-25,4.542286730654903e-14)
    sum e = 1.2356149257226173e-09
    sum de = -2.984193811412532e-11
Info: cfl dt = 0.001572302426768132 cfl multiplier : 0.41368897910531777       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0691e+04 | 11520 |      1 | 5.568e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.207259492970028 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.5922463688516308, dt = 0.001572302426768132 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.9%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 269.70 us  (87.9%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.6533854166666675
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9401819245668316e-27,-3.07540255553158e-27,2.634501466563962e-15)
    sum a = (2.0861977633067976e-25,-2.86917375733201e-26,4.4840996333959826e-14)
    sum e = 1.2355680724410333e-09
    sum de = -2.9954341749896717e-11
Info: cfl dt = 0.002314269070641087 cfl multiplier : 0.6091259860702118        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9487e+04 | 11520 |      1 | 3.907e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.488069846557986 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.593818671278399, dt = 0.002314269070641087 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.9%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 304.47 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.650434027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0760959946647322e-27,-3.229346043091447e-27,2.73781815890604e-15)
    sum a = (3.053607763576595e-25,-1.8345625706683985e-25,4.397262750009516e-14)
    sum e = 1.2354987195691657e-09
    sum de = -3.010636421308352e-11
Info: cfl dt = 0.0028076750300312097 cfl multiplier : 0.7394173240468079       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9290e+04 | 11520 |      1 | 3.933e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.182844894099684 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.59613294034904, dt = 0.0028076750300312097 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (1.8%)
   patch tree reduce : 2.33 us    (0.7%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.4%)
   LB compute        : 312.49 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (63.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.6461805555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.238299981828414e-27,-4.021946972284817e-27,2.8602741875754682e-15)
    sum a = (2.826457906729813e-26,-3.1532064262712967e-25,4.290050157963102e-14)
    sum e = 1.2354140644808693e-09
    sum de = -3.027003806529376e-11
Info: cfl dt = 0.003134585821314932 cfl multiplier : 0.8262782160312053        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9397e+04 | 11520 |      1 | 3.919e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.793001283308367 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.5989406153790713, dt = 0.001059384620928805 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.77 us    (1.9%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.54 us    (0.4%)
   LB compute        : 330.27 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (72.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.640711805555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.902675441382577e-27,-4.5163690742225884e-27,2.904217228590732e-15)
    sum a = (5.480610057653879e-25,4.595615298359263e-25,4.2498050928236566e-14)
    sum e = 1.2353816326753554e-09
    sum de = -3.031468999095634e-11
Info: cfl dt = 0.0033536667930761815 cfl multiplier : 0.8841854773541368       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9430e+04 | 11520 |      1 | 3.914e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.742965109388082 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 790                                                     [SPH][rank=0]
Info: time since start : 367.742863339 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[0. 0. 0. ... 0. 0. 0.]
(11520, 3)
[[0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 ...
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]]
compute original rho
Info: Dumping state to _to_trash/dusty_settle/dump/0000016.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.50 us   (68.6%)
Info: dump to _to_trash/dusty_settle/dump/0000016.sham                      [Shamrock Dump][rank=0]
              - took 1.09 ms, bandwidth = 2.72 GB/s
Info: evolve_until (target_time = 1.70s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 1.6, dt = 0.0033536667930761815 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.45 us    (1.1%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 480.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 290.98 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.639236111111112
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.933065223253257e-27,-2.63576214511286e-27,3.046528355743727e-15)
    sum a = (-9.406363153387774e-26,-3.4538816344062443e-25,4.1174923066137006e-14)
    sum e = 1.2352801413527134e-09
    sum de = -3.048435473917502e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.015399454975540487
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.8291101232743906e-27,-3.861069093393424e-27,3.0443096907572666e-15)
    sum a = (7.67110106658682e-26,-1.447346158716012e-25,4.1186016390743295e-14)
    sum e = 1.2352796385714268e-09
    sum de = -3.046748151345842e-11
Info: cfl dt = 0.0017490970662788446 cfl multiplier : 0.4613951591180456       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.8127e+04 | 11520 |      1 | 6.355e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.997936159528976 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6033536667930763, dt = 0.0017490970662788446 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.83 us    (2.0%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.63 us    (0.5%)
   LB compute        : 312.27 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.632899305555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.253494872763754e-27,-3.902675441382577e-27,3.1163666328546052e-15)
    sum a = (2.238310571555142e-25,9.972209486040257e-26,4.048733057448326e-14)
    sum e = 1.235226434401214e-09
    sum de = -3.054108884272039e-11
Info: cfl dt = 0.0024292679806396495 cfl multiplier : 0.640930106078697        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7883e+04 | 11520 |      1 | 4.131e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.240909068573318 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6051027638593551, dt = 0.0024292679806396495 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (1.9%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 330.21 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.629861111111112
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.844305014209731e-27,-3.48522508322474e-27,3.214110173986464e-15)
    sum a = (-1.466318653399066e-25,-1.2558460077046026e-25,3.950682240343696e-14)
    sum e = 1.2351522311680438e-09
    sum de = -3.062783435678318e-11
Info: cfl dt = 0.0028829702174169294 cfl multiplier : 0.7606200707191313       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9466e+04 | 11520 |      1 | 3.910e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.369094567900863 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6075320318399948, dt = 0.0028829702174169294 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (2.3%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.5%)
   LB compute        : 268.84 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.624565972222221
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.1064857765354126e-27,-4.1689560685131584e-27,3.326816207807185e-15)
    sum a = (-9.231061740526808e-26,1.834673520929703e-25,3.832743899931968e-14)
    sum e = 1.2350638712783648e-09
    sum de = -3.070964187993727e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010630047973088308
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.198019742111549e-27,-3.659971744779184e-27,3.325116144192283e-15)
    sum a = (9.559474513987857e-26,1.6246446762804573e-25,3.833593931720679e-14)
    sum e = 1.2350635978134157e-09
    sum de = -3.069758757343417e-11
Info: cfl dt = 0.001593692187810154 cfl multiplier : 0.4202066902397104        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0624e+04 | 11520 |      1 | 5.586e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.5804157274746 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 1.6104150020574117, dt = 0.001593692187810154 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (2.1%)
   patch tree reduce : 1.91 us    (0.7%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.5%)
   LB compute        : 270.78 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.618315972222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.600214439340031e-27,-3.442231856969281e-27,3.386224084276491e-15)
    sum a = (3.0937370862121333e-25,2.1879946280535925e-25,3.767533217289437e-14)
    sum e = 1.2350147394805797e-09
    sum de = -3.073566831014004e-11
Info: cfl dt = 0.002327292679552363 cfl multiplier : 0.6134711268264735        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9421e+04 | 11520 |      1 | 3.916e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.652574139527827 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6120086942452219, dt = 0.002327292679552363 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.01 us    (2.4%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.5%)
   LB compute        : 270.71 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (63.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.616666666666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.46285272098181e-27,-2.752953358615642e-27,3.4733792068202636e-15)
    sum a = (4.563606147972941e-25,-5.7583185616988134e-27,3.670261143606448e-14)
    sum e = 1.2349432309270157e-09
    sum de = -3.0778417228177675e-11
Info: cfl dt = 0.0028143794210374394 cfl multiplier : 0.7423140845509822       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9651e+04 | 11520 |      1 | 3.885e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.56441253410006 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.6143359869247742, dt = 0.0028143794210374394 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (1.7%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 344.79 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.611892361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.906592996205429e-27,-3.198141282099582e-27,3.575542378218118e-15)
    sum a = (-1.9589378135906409e-25,2.293952127599303e-25,3.551388894610217e-14)
    sum e = 1.2348566042322034e-09
    sum de = -3.081062308564675e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010165044664680057
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.064757888558226e-27,-2.847954519857542e-27,3.5738696201625755e-15)
    sum a = (-6.403605281445255e-25,9.692060076246626e-26,3.5522252736507054e-14)
    sum e = 1.2348564151548284e-09
    sum de = -3.079947684360093e-11
Info: cfl dt = 0.0015696976210740567 cfl multiplier : 0.41410469485032736      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0768e+04 | 11520 |      1 | 5.547e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.265111333310724 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6171503663458116, dt = 0.0015696976210740567 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.3%)
   patch tree reduce : 1.91 us    (0.7%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.5%)
   LB compute        : 269.67 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (62.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.60546875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.4268546560518926e-27,-2.9145246766401872e-27,3.629640585217835e-15)
    sum a = (2.4009636546274052e-26,3.090353103242349e-25,3.485208911716189e-14)
    sum e = 1.234808129051913e-09
    sum de = -3.0810622598848874e-11
Info: cfl dt = 0.002309788926658442 cfl multiplier : 0.6094031299002182        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8055e+04 | 11520 |      1 | 4.106e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.761783375903079 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6187200639668855, dt = 0.002309788926658442 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.2%)
   patch tree reduce : 2.30 us    (0.8%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 271.83 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.603732638888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.944160249383698e-27,-1.9763015294847806e-27,3.709615577612858e-15)
    sum a = (-1.801832243583598e-26,2.4680885627165725e-26,3.38594876521689e-14)
    sum e = 1.2347370052963319e-09
    sum de = -3.08148861698384e-11
Info: cfl dt = 0.0028035265381354587 cfl multiplier : 0.7396020866001454       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9588e+04 | 11520 |      1 | 3.893e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.357112989160182 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6210298528935438, dt = 0.0028035265381354587 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.9%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 285.79 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.599479166666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.862334431671697e-27,-2.301524482933329e-27,3.803395199876873e-15)
    sum a = (1.7223918564896414e-25,-3.40167953646252e-25,3.2644769688651115e-14)
    sum e = 1.2346506540032902e-09
    sum de = -3.080138568194776e-11
Info: cfl dt = 0.0031339159348611903 cfl multiplier : 0.8264013910667636       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9516e+04 | 11520 |      1 | 3.903e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.85943757802638 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.6238333794316793, dt = 0.0031339159348611903 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (2.0%)
   patch tree reduce : 1.51 us    (0.5%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 279.30 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (63.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.591753472222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.684753243590626e-27,-3.875631315189628e-27,3.903998416769423e-15)
    sum a = (-2.610437747970129e-25,2.2286578988216586e-25,3.127486741347203e-14)
    sum e = 1.2345541769957018e-09
    sum de = -3.076296269106563e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01270535045301979
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.044015484557666e-27,-2.951970389830425e-27,3.901851837485266e-15)
    sum a = (-2.4324735288378573e-25,3.609433900755025e-25,3.1285600310257506e-14)
    sum e = 1.234554067103387e-09
    sum de = -3.074979708085889e-11
Info: cfl dt = 0.0016784012504868547 cfl multiplier : 0.4421337970222545       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0834e+04 | 11520 |      1 | 5.530e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.403424459180652 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6269672953665404, dt = 0.0016784012504868547 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.8%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 325.28 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.584809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.618243856801997e-27,-2.1330187735772582e-27,3.95437844616666e-15)
    sum a = (-1.907456892345395e-25,-1.375117538606842e-25,3.054482992612207e-14)
    sum e = 1.2345025251197377e-09
    sum de = -3.07223538181335e-11
Info: cfl dt = 0.002385627823475403 cfl multiplier : 0.6280891980148363        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8926e+04 | 11520 |      1 | 3.983e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.171550872865023 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6286456966170273, dt = 0.002385627823475403 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (2.0%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.5%)
   LB compute        : 291.33 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.579427083333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.107872654801717e-27,-2.9540507072298828e-27,4.026625387331535e-15)
    sum a = (-5.170282176785448e-26,-8.374525723256772e-26,2.948769177028017e-14)
    sum e = 1.234429304058881e-09
    sum de = -3.067042500094364e-11
Info: cfl dt = 0.0028570952786324583 cfl multiplier : 0.7520594653432241       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9147e+04 | 11520 |      1 | 3.952e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.72939942784452 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.6310313244405028, dt = 0.0028570952786324583 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.09 us    (2.1%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 318.40 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.573871527777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.3006487338181274e-27,-3.0629206511348337e-27,4.1096135631661984e-15)
    sum a = (1.917220515340183e-26,-4.771083136612185e-25,2.8214921462824735e-14)
    sum e = 1.234341777518327e-09
    sum de = -3.058977220213017e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010908653471023537
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.351269790538264e-27,-3.689096188371591e-27,4.107795350148459e-15)
    sum a = (-3.6453817854176536e-25,-4.567156556334681e-25,2.822401252778628e-14)
    sum e = 1.2343417577483944e-09
    sum de = -3.0579240692888473e-11
Info: cfl dt = 0.0015854353601825084 cfl multiplier : 0.417353155114408        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.9052e+04 | 11520 |      1 | 6.047e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.0105574980088 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 1.6338884197191352, dt = 0.0015854353601825084 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (1.9%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 311.68 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (59.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.567795138888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.089904007333767e-27,-4.313884847342042e-27,4.152555684637508e-15)
    sum a = (-1.5266755955486642e-26,8.043893944569633e-26,2.75131589393095e-14)
    sum e = 1.234293332328817e-09
    sum de = -3.0528176281152206e-11
Info: cfl dt = 0.002323149860863359 cfl multiplier : 0.6115687700762721        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9651e+04 | 11520 |      1 | 3.885e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.69041647923777 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.6354738550793178, dt = 0.002323149860863359 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (2.2%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 270.37 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.565711805555557
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.437317013043197e-27,-3.657891427379726e-27,4.2159093697910414e-15)
    sum a = (-1.080655545104941e-25,4.499698797461601e-25,2.646880966944617e-14)
    sum e = 1.2342224972222651e-09
    sum de = -3.0442057542343203e-11
Info: cfl dt = 0.002814967290446331 cfl multiplier : 0.7410458467175148        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6224e+04 | 11520 |      1 | 4.393e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.038536652412294 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.637797004940181, dt = 0.002814967290446331 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.4%)
   patch tree reduce : 1.98 us    (0.5%)
   gen split merge   : 991.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.3%)
   LB compute        : 382.97 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.65 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (71.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.561371527777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.0469107810783086e-27,-2.0075062904766457e-27,4.289205113297595e-15)
    sum a = (-2.572936559649239e-25,-9.399706137709509e-26,2.5199330350122815e-14)
    sum e = 1.2341369428122828e-09
    sum de = -3.03205222230622e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011875548458842318
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.7702285669504396e-27,-2.8167497588656768e-27,4.28741834191686e-15)
    sum a = (-2.330399288437801e-25,-6.914420284490753e-26,2.5208264207107483e-14)
    sum e = 1.234136988890126e-09
    sum de = -3.031070380835019e-11
Info: cfl dt = 0.0015715626099988623 cfl multiplier : 0.4136819489058383       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0851e+04 | 11520 |      1 | 5.525e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.342221418052112 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6406119722306274, dt = 0.0015715626099988623 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.63 us    (2.1%)
   patch tree reduce : 2.72 us    (0.7%)
   gen split merge   : 1.26 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.3%)
   LB compute        : 374.19 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 6.18 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.555729166666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.55318211827369e-27,-2.880546159115712e-27,4.327047281665246e-15)
    sum a = (3.4694146709888614e-25,1.0167481945936017e-25,2.449622447909971e-14)
    sum e = 1.2340894059264871e-09
    sum de = -3.023684906927344e-11
Info: cfl dt = 0.0023141719085028123 cfl multiplier : 0.6091212992705589       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9553e+04 | 11520 |      1 | 3.898e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.513872200361835 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6421835348406262, dt = 0.0023141719085028123 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (1.8%)
   patch tree reduce : 1.88 us    (0.5%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 327.00 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.553298611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.7757153100216435e-27,-2.5296659577405193e-27,4.383176248712531e-15)
    sum a = (3.1006160024130065e-25,1.8657395940949373e-25,2.344644810501174e-14)
    sum e = 1.2340195348025987e-09
    sum de = -3.0117428164061636e-11
Info: cfl dt = 0.0028096027984772713 cfl multiplier : 0.739414199513706        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9652e+04 | 11520 |      1 | 3.885e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.443492245750193 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.644497706749129, dt = 0.0028096027984772713 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.0%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 294.85 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (54.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.54921875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.625871687266676e-27,-1.865351268180372e-27,4.447836773425355e-15)
    sum a = (7.64669200909985e-26,-2.1621986923003176e-25,2.2170257363792013e-14)
    sum e = 1.2339350928880139e-09
    sum de = -2.995607823206903e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010090979906007434
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.252801433630601e-27,-2.463095800957874e-27,4.446043978886608e-15)
    sum a = (8.89821095661358e-26,-5.70284343104661e-26,2.217922133641394e-14)
    sum e = 1.233935200003766e-09
    sum de = -2.994673135937592e-11
Info: cfl dt = 0.0015703921019252522 cfl multiplier : 0.4131380665045687       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0918e+04 | 11520 |      1 | 5.507e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.365876637208057 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6473073095476063, dt = 0.0015703921019252522 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.7%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 1.42 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 312.95 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.542795138888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.4178399473209095e-27,-2.323021096061058e-27,4.4808866455002584e-15)
    sum a = (-4.210174090587746e-25,-1.1982628220876143e-27,2.1463719726063276e-14)
    sum e = 1.2338882218312707e-09
    sum de = -2.9850831060674196e-11
Info: cfl dt = 0.0023144816932060513 cfl multiplier : 0.6087587110030458       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7107e+04 | 11520 |      1 | 4.250e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.302461399348328 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6488777016495315, dt = 0.0023144816932060513 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (2.1%)
   patch tree reduce : 1.97 us    (0.7%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 267.87 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.539496527777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.999756920023935e-27,-2.2495165479468872e-27,4.530002222836991e-15)
    sum a = (5.911429922298897e-26,-6.874478190421165e-26,2.04093595849537e-14)
    sum e = 1.2338192506838736e-09
    sum de = -2.969934254455969e-11
Info: cfl dt = 0.002811491381233748 cfl multiplier : 0.7391724740020305        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9769e+04 | 11520 |      1 | 3.870e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.531319034903007 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6511921833427377, dt = 0.002811491381233748 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (2.0%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 287.04 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.534461805555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.790970970951e-27,-2.574046062262283e-27,4.58616281278385e-15)
    sum a = (2.9944366023446876e-25,1.7618901495140109e-26,1.9129214560959964e-14)
    sum e = 1.2337359635762371e-09
    sum de = -2.949976452469045e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010077460702705697
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.014258371826122e-27,-2.4811252184198406e-27,4.584363254433341e-15)
    sum a = (1.2088030969115333e-25,-8.250261430595834e-26,1.9138212353092157e-14)
    sum e = 1.233736128317981e-09
    sum de = -2.949086379494771e-11
Info: cfl dt = 0.0015722839756156216 cfl multiplier : 0.41305749133401015      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0960e+04 | 11520 |      1 | 5.496e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.415272119132304 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6540036747239715, dt = 0.0015722839756156216 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (1.9%)
   patch tree reduce : 2.23 us    (0.7%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 311.30 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.529253472222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.04338281541853e-27,-2.7210551584906244e-27,4.614466607644792e-15)
    sum a = (-3.7535028150588e-25,2.0241765672376332e-25,1.8421203108114536e-14)
    sum e = 1.2336898085175109e-09
    sum de = -2.9373831740475876e-11
Info: cfl dt = 0.002318033681405476 cfl multiplier : 0.6087049942226734        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8637e+04 | 11520 |      1 | 4.023e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.07035783635211 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.655575958699587, dt = 0.002318033681405476 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (1.9%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.64 us    (0.5%)
   LB compute        : 312.09 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.524826388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.747345075556405e-27,-1.9707540164195602e-27,4.6566039058290345e-15)
    sum a = (3.388975731543165e-26,-2.6388410148640574e-25,1.7365692973008397e-14)
    sum e = 1.2336218525227268e-09
    sum de = -2.919165712713003e-11
Info: cfl dt = 0.0028146205290531493 cfl multiplier : 0.7391366628151156       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8705e+04 | 11520 |      1 | 4.013e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.79350698305556 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.6578939923809926, dt = 0.0028146205290531493 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (2.0%)
   patch tree reduce : 1.97 us    (0.7%)
   gen split merge   : 1.06 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 268.02 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.518489583333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.261876912355601e-27,-3.3701141871214155e-27,4.704258387750128e-15)
    sum a = (6.472560868845945e-26,-8.410029806874183e-25,1.6086961813469802e-14)
    sum e = 1.2335399359146933e-09
    sum de = -2.8955708163220752e-11
Info: cfl dt = 0.0031433806263361677 cfl multiplier : 0.8260911085434103       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9735e+04 | 11520 |      1 | 3.874e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.154337379646467 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6607086129100457, dt = 0.0031433806263361677 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (1.8%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 322.91 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.514670138888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.53301161341825e-27,-6.645920652134084e-27,4.753026260364133e-15)
    sum a = (-7.911946346313366e-25,-4.7042910793069305e-26,1.4663387429262723e-14)
    sum e = 1.2334492755809332e-09
    sum de = -2.8673989981333208e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011491520385031357
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2127035038957855e-27,-5.4532053431116896e-27,4.750788842293833e-15)
    sum a = (-1.5495036118120464e-25,-4.979447727341864e-26,1.4674574519708266e-14)
    sum e = 1.2334495806621208e-09
    sum de = -2.8663725461882305e-11
Info: cfl dt = 0.001680970779219286 cfl multiplier : 0.44203036951447006       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0728e+04 | 11520 |      1 | 5.558e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.360827689109655 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6638519935363818, dt = 0.001680970779219286 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.8%)
   patch tree reduce : 2.44 us    (0.7%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 316.27 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.509635416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.960924328567392e-27,-5.641820787329184e-27,4.775473955900498e-15)
    sum a = (3.4004590835881714e-25,5.405052929705576e-25,1.3913178798248211e-14)
    sum e = 1.2334014525464074e-09
    sum de = -2.8507854380682398e-11
Info: cfl dt = 0.002387557556941477 cfl multiplier : 0.62802024634298          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9609e+04 | 11520 |      1 | 3.891e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.553697228396961 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6655329643156012, dt = 0.002387557556941477 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (2.1%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 272.84 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.5062500000000005
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.29579465988606e-27,-3.794498936610779e-27,4.8080525291017e-15)
    sum a = (4.784147529880779e-25,1.0531398803014478e-25,1.2836049972766e-14)
    sum e = 1.2333335580006913e-09
    sum de = -2.8276596377205036e-11
Info: cfl dt = 0.0028584931541154315 cfl multiplier : 0.7520134975619867       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9721e+04 | 11520 |      1 | 3.876e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.175330117598364 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6679205218725426, dt = 0.0028584931541154315 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.9%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 275.43 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.502604166666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.77767408743307e-27,-4.035815754947868e-27,4.843458436541595e-15)
    sum a = (-7.674429574425953e-26,1.875947018134943e-25,1.1552799234484765e-14)
    sum e = 1.2332530375681355e-09
    sum de = -2.7985798108707216e-11
Info: cfl dt = 0.003173186745377515 cfl multiplier : 0.8346756650413244        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7209e+04 | 11520 |      1 | 4.234e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.30484071889036 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.670779015026658, dt = 0.003173186745377515 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.79 us    (2.4%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 298.36 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.495572916666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.79784459228851e-27,-3.347924134860534e-27,4.878283544220458e-15)
    sum a = (-8.862152121689649e-26,2.226993644902092e-25,1.0137079094576216e-14)
    sum e = 1.233164672193033e-09
    sum de = -2.7646118043782887e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011869660874896219
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.70839094411183e-27,-3.284127734610499e-27,4.876037372028508e-15)
    sum a = (-1.095855730903645e-25,4.583577195007734e-25,1.0148309955533149e-14)
    sum e = 1.2331650802258962e-09
    sum de = -2.7636582836890953e-11
Info: cfl dt = 0.0016912033960206681 cfl multiplier : 0.4448918883471082       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0605e+04 | 11520 |      1 | 5.591e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.432800923607864 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6739522017720354, dt = 0.0016912033960206681 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (1.8%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 350.92 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.51 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.4890625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.519082060761182e-27,-2.041484808001121e-27,4.893218047097754e-15)
    sum a = (-5.17361068462458e-26,-1.11837863394844e-26,9.395440939600226e-15)
    sum e = 1.2331183927438756e-09
    sum de = -2.745080440252985e-11
Info: cfl dt = 0.0023942987485784393 cfl multiplier : 0.6299279255647389       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7714e+04 | 11520 |      1 | 4.157e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.646785366805547 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.675643405168056, dt = 0.0023942987485784393 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (1.9%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 319.11 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486805555555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.4740085171062666e-27,-2.4575482878926536e-27,4.9150769122628396e-15)
    sum a = (-2.867509503412444e-26,-2.1404524410846533e-25,8.33606401190121e-15)
    sum e = 1.2330528600762823e-09
    sum de = -2.717875841660988e-11
Info: cfl dt = 0.002862968132867397 cfl multiplier : 0.753285283709826         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9538e+04 | 11520 |      1 | 3.900e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.100712997982487 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6780377039166345, dt = 0.002862968132867397 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.87 us    (2.4%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 266.23 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.483072916666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.372766403665993e-27,-3.397851752447518e-27,4.937674565456965e-15)
    sum a = (1.2327683533532855e-25,-3.071103232906034e-25,7.0788816205735785e-15)
    sum e = 1.2329754031652546e-09
    sum de = -2.684083931495579e-11
Info: cfl dt = 0.003175812827427834 cfl multiplier : 0.8355235224732173        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9462e+04 | 11520 |      1 | 3.910e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.359326068617197 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6809006720495019, dt = 0.003175812827427834 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.1%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 290.56 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.48 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.477951388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.98680675607258e-27,-4.471295530567672e-27,4.958356131950161e-15)
    sum a = (1.2735425743826556e-25,7.384849392421446e-26,5.697149518125028e-15)
    sum e = 1.232890666590795e-09
    sum de = -2.645079174474478e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012108810683042374
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.9791789256079024e-27,-3.841652797665153e-27,4.956162070681623e-15)
    sum a = (-2.245688763931885e-25,2.4635396020030917e-25,5.708119824731667e-15)
    sum e = 1.2328911647414814e-09
    sum de = -2.6442190529594993e-11
Info: cfl dt = 0.0016928849027619886 cfl multiplier : 0.44517450749107246      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.9134e+04 | 11520 |      1 | 6.021e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.98906602043644 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.6840764848769296, dt = 0.0016928849027619886 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.06 us    (2.3%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1.36 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 280.81 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470486111111112
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.179643605083007e-27,-3.2203313343604636e-27,4.965842680377912e-15)
    sum a = (-1.4295941169073066e-25,-4.185043856402298e-26,4.974980049814286e-15)
    sum e = 1.2328464485823738e-09
    sum de = -2.6230041499647186e-11
Info: cfl dt = 0.0023967968194363565 cfl multiplier : 0.6301163383273817       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6794e+04 | 11520 |      1 | 4.299e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.174814544832195 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6857693697796916, dt = 0.0023967968194363565 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.33 us    (2.0%)
   patch tree reduce : 2.17 us    (0.6%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.4%)
   LB compute        : 337.90 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.466927083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.800679118815136e-27,-3.442231856969281e-27,4.977146136108924e-15)
    sum a = (-1.6703561839378735e-26,-3.718165156833346e-25,3.945443006662155e-15)
    sum e = 1.2327837930979797e-09
    sum de = -2.5921586971927814e-11
Info: cfl dt = 0.002867229988636556 cfl multiplier : 0.7534108922182545        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9022e+04 | 11520 |      1 | 3.969e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.737354153897765 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6881661665991279, dt = 0.002867229988636556 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.83 us    (2.2%)
   patch tree reduce : 2.37 us    (0.8%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 291.30 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.463802083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.800679118815136e-27,-4.9428341411114096e-27,4.987224833060793e-15)
    sum a = (-3.374552197573592e-26,1.630525040129591e-25,2.726377861683768e-15)
    sum e = 1.232709866846584e-09
    sum de = -2.55413253718198e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010187946538926252
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.856847688600493e-27,-4.193919877306651e-27,4.985477162990518e-15)
    sum a = (-4.538032112742274e-25,3.101725505026051e-25,2.7351162120282218e-15)
    sum e = 1.2327103185884193e-09
    sum de = -2.5534860921621793e-11
Info: cfl dt = 0.001591438896936262 cfl multiplier : 0.4178036307394182        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.9423e+04 | 11520 |      1 | 5.931e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.403457944915928 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6910333965877644, dt = 0.001591438896936262 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.36 us    (2.2%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 306.04 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.4609375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.5029077811201295e-27,-3.453326883099722e-27,4.989842460747349e-15)
    sum a = (3.7723088843498974e-25,5.12279546494716e-25,2.0628791090044326e-15)
    sum e = 1.2326697190060908e-09
    sum de = -2.5320076576437555e-11
Info: cfl dt = 0.0023318317101199216 cfl multiplier : 0.6118690871596121       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9340e+04 | 11520 |      1 | 3.926e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.591749208029727 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6926248354847007, dt = 0.0023318317101199216 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.98 us    (2.0%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 324.48 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.459114583333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.0537844024158185e-27,-2.119149990914207e-27,4.994117835530984e-15)
    sum a = (-1.3721038521341609e-24,3.619197523749813e-25,1.0865720322516331e-15)
    sum e = 1.2326108794057147e-09
    sum de = -2.499867086423142e-11
Info: cfl dt = 0.0028245017051473412 cfl multiplier : 0.741246058106408        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9047e+04 | 11520 |      1 | 3.966e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.16613790769794 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.6949566671948206, dt = 0.0028245017051473412 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.28 us    (2.4%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 276.43 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.456076388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.043893944569634e-28,-1.2343216570115472e-27,4.996048568189913e-15)
    sum a = (2.207355448651212e-26,3.4825068018227818e-25,-8.209003771806675e-17)
    sum e = 1.2325406719557582e-09
    sum de = -2.4599350619977786e-11
Info: cfl dt = 0.0031502072571573106 cfl multiplier : 0.8274973720709387       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9398e+04 | 11520 |      1 | 3.919e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.948532630480642 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.697781168899968, dt = 0.0022188311000321814 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.29 us    (2.1%)
   patch tree reduce : 2.19 us    (0.6%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 329.65 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.452083333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1521491197329695e-27,-4.57669827880686e-28,4.9942159802547445e-15)
    sum a = (1.3316250361755138e-25,-4.3954055518354565e-25,-9.845023893414911e-16)
    sum e = 1.2324866203704313e-09
    sum de = -2.4275190615997985e-11
Info: cfl dt = 0.0033675454177506912 cfl multiplier : 0.8849982480472924       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9298e+04 | 11520 |      1 | 3.932e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.31510639199083 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 832                                                     [SPH][rank=0]
Info: time since start : 389.61479837400003 (s)                                       [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[0. 0. 0. ... 0. 0. 0.]
(11520, 3)
[[0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 ...
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]]
compute original rho
Info: Dumping state to _to_trash/dusty_settle/dump/0000017.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 13.29 us   (71.0%)
Info: dump to _to_trash/dusty_settle/dump/0000017.sham                      [Shamrock Dump][rank=0]
              - took 1.27 ms, bandwidth = 2.33 GB/s
Info: evolve_until (target_time = 1.80s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 1.7000000000000002, dt = 0.0033675454177506912 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.67 us    (1.2%)
   patch tree reduce : 1.49 us    (0.5%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 289.83 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.450347222222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7363715894139968e-27,-2.9207656288385603e-27,4.9898994734496006e-15)
    sum a = (-2.7504569777362925e-25,-5.955366225775444e-25,-2.347384166526019e-15)
    sum e = 1.2324052983275438e-09
    sum de = -2.378007399758204e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.013523080816153932
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1205976391745282e-27,-3.1426661514473775e-27,4.987604690306962e-15)
    sum a = (8.820545773700494e-27,1.0580216917988418e-25,-2.335910250445518e-15)
    sum e = 1.232406014668574e-09
    sum de = -2.3772429038953446e-11
Info: cfl dt = 0.001756149101983522 cfl multiplier : 0.4616660826824308        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.9129e+04 | 11520 |      1 | 6.022e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.130501884008883 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7033675454177508, dt = 0.001756149101983522 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.17 us    (2.3%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.5%)
   LB compute        : 283.64 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.446527777777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5168981037712133e-27,-1.700312754490064e-27,4.9835218030858864e-15)
    sum a = (3.1636357508339107e-25,1.406405512294685e-25,-3.037309138078954e-15)
    sum e = 1.2323643107899867e-09
    sum de = -2.350904739218095e-11
Info: cfl dt = 0.002438495134511359 cfl multiplier : 0.6411107217882872        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9611e+04 | 11520 |      1 | 3.890e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.250241267013614 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7051236945197343, dt = 0.002438495134511359 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (1.9%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 309.00 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.63 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.4443576388888895
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5574035230666214e-27,-1.3480456748485662e-27,4.975499459017848e-15)
    sum a = (-3.717166604481606e-25,2.689434334018868e-26,-3.998896245831217e-15)
    sum e = 1.2323072438170865e-09
    sum de = -2.313669282755623e-11
Info: cfl dt = 0.0028937746766523496 cfl multiplier : 0.7607404811921915       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9627e+04 | 11520 |      1 | 3.888e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.57640263849172 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.7075621896542457, dt = 0.0028937746766523496 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (1.9%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 280.16 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.443055555555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.891337335276072e-28,-1.3813307532398888e-27,4.962755141585831e-15)
    sum a = (-1.0106459302218593e-25,-4.736466655085209e-25,-5.122261096819608e-15)
    sum e = 1.2322407689033421e-09
    sum de = -2.2686072537746713e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010436300409596925
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.046399651927205e-27,-2.1635300954359703e-27,4.961129759205235e-15)
    sum a = (-4.0079672393604615e-25,2.773312731565001e-25,-5.114134185277196e-15)
    sum e = 1.2322413383375796e-09
    sum de = -2.2681029905794907e-11
Info: cfl dt = 0.0015994964065869143 cfl multiplier : 0.42024682706406385      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0797e+04 | 11520 |      1 | 5.539e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.806679684903326 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.710455964330898, dt = 0.0015994964065869143 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (2.0%)
   patch tree reduce : 2.40 us    (0.7%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 307.86 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.440190972222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.518327851634013e-29,-6.046789241090277e-28,4.952961478679226e-15)
    sum a = (-3.9713536531300064e-25,1.1862801938667382e-25,-5.728263354845991e-15)
    sum e = 1.2322050922109048e-09
    sum de = -2.242918616478311e-11
Info: cfl dt = 0.0023358042543188073 cfl multiplier : 0.6134978847093758       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9172e+04 | 11520 |      1 | 3.949e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.581342336475846 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.712055460737485, dt = 0.0023358042543188073 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.30 us    (2.3%)
   patch tree reduce : 2.26 us    (0.7%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 293.72 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.438888888888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.917627252341852e-28,-4.715386105437372e-28,4.939090228065723e-15)
    sum a = (-1.243974329745031e-25,-1.2945676488998413e-25,-6.613589007418765e-15)
    sum e = 1.2321529312138954e-09
    sum de = -2.205638427061957e-11
Info: cfl dt = 0.0028281586612060312 cfl multiplier : 0.7423319231395838       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9522e+04 | 11520 |      1 | 3.902e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.54904515604096 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.7143912649918038, dt = 0.0028281586612060312 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (1.9%)
   patch tree reduce : 1.88 us    (0.5%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 320.79 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.49 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 18.46 us   (95.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.436024305555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.798294951445597e-28,-1.1261451522397488e-27,4.919351975319245e-15)
    sum a = (-2.369453780416953e-25,7.336031277447506e-26,-7.66729309734674e-15)
    sum e = 1.2320910115538158e-09
    sum de = -2.1597638754334925e-11
Info: cfl dt = 0.0031585468983709466 cfl multiplier : 0.828221282093056        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8382e+04 | 11520 |      1 | 4.059e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.083780691278353 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7172194236530098, dt = 0.0031585468983709466 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.7%)
   patch tree reduce : 2.17 us    (0.6%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 343.41 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.433854166666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9284542292972546e-27,-6.046789241090277e-28,4.893644449314559e-15)
    sum a = (-8.01060886617831e-27,1.1953503777283736e-25,-8.820190037110143e-15)
    sum e = 1.2320234613323507e-09
    sum de = -2.1076525846850102e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012009427768243881
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4333386882263304e-27,-5.103712020002802e-28,4.891823709787686e-15)
    sum a = (-2.418271895390893e-25,-3.547717817904448e-25,-8.811086339183867e-15)
    sum e = 1.232024190969918e-09
    sum de = -2.1071450089662813e-11
Info: cfl dt = 0.0016908241106860604 cfl multiplier : 0.44274042736435204      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0712e+04 | 11520 |      1 | 5.562e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.44366696624965 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.7203779705513809, dt = 0.0016908241106860604 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (2.1%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 297.15 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.431684027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2675459654088535e-27,-1.9138920075010507e-27,4.8769400897917525e-15)
    sum a = (4.916206078398351e-25,-2.7373925844676986e-25,-9.419736217624318e-15)
    sum e = 1.2319885970558876e-09
    sum de = -2.0790147093575205e-11
Info: cfl dt = 0.002401990988054188 cfl multiplier : 0.6284936182429014        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9595e+04 | 11520 |      1 | 3.893e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.637626084815016 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.722068794662067, dt = 0.002401990988054188 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (2.0%)
   patch tree reduce : 1.93 us    (0.7%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 272.70 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.63 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.4313368055555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.784730018752627e-28,-2.474190827088315e-27,4.853799408341627e-15)
    sum a = (5.345583589646413e-26,3.88436864826735e-26,-1.0270609825525747e-14)
    sum e = 1.2319389237278124e-09
    sum de = -2.0385991958980485e-11
Info: cfl dt = 0.0028784404753579348 cfl multiplier : 0.752329078828601        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9747e+04 | 11520 |      1 | 3.873e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.32868814982874 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.7244707856501211, dt = 0.0028784404753579348 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.9%)
   patch tree reduce : 1.72 us    (0.6%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.63 us    (0.5%)
   LB compute        : 290.73 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.57 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.429600694444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.981484422585904e-28,-1.9749146512184756e-27,4.823214173944727e-15)
    sum a = (-1.7864101572622852e-25,4.258492929385817e-25,-1.1269459412802613e-14)
    sum e = 1.2318807519007845e-09
    sum de = -1.9895490604935824e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010860159439075982
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1816202828919531e-27,-1.3036655703268027e-27,4.821776609404872e-15)
    sum a = (1.2916829421059267e-25,4.715164204914763e-25,-1.1262271590190056e-14)
    sum e = 1.231881382867627e-09
    sum de = -1.98918287675893e-11
Info: cfl dt = 0.0015985038997183404 cfl multiplier : 0.41744302627620034      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0733e+04 | 11520 |      1 | 5.556e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.64942989200299 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.727349226125479, dt = 0.0015985038997183404 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.8%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 305.62 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.79 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (71.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.428993055555557
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.679266500519422e-28,-4.992761758698393e-28,4.803784169207649e-15)
    sum a = (-2.52489509650443e-25,-4.014180453993508e-26,-1.1808494478107206e-14)
    sum e = 1.231849613717925e-09
    sum de = -1.9617511999099518e-11
Info: cfl dt = 0.002341640261638558 cfl multiplier : 0.6116286841841335        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6495e+04 | 11520 |      1 | 4.348e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.235335021310963 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7289477300251974, dt = 0.002341640261638558 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.7%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 326.00 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (60.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.427951388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.446514031756229e-27,-1.0817650477179852e-27,4.775696353400437e-15)
    sum a = (2.121590896662904e-25,1.4947219202929947e-25,-1.2595309342209658e-14)
    sum e = 1.2318039217500988e-09
    sum de = -1.9212176730054267e-11
Info: cfl dt = 0.002836740324879781 cfl multiplier : 0.7410857894560889        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9571e+04 | 11520 |      1 | 3.896e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.63868470885156 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.731289370286836, dt = 0.002836740324879781 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.9%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 295.49 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.427517361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.7792432756814226e-28,-4.0496845376109195e-28,4.739045512802034e-15)
    sum a = (6.398335144033295e-25,3.4501093255218945e-25,-1.352730081496228e-14)
    sum e = 1.231749918723494e-09
    sum de = -1.8716090148797655e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010638511860947828
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0095258378820873e-28,-5.547513065220437e-29,4.7377236039068235e-15)
    sum a = (5.909183179507483e-25,1.6260870296774145e-25,-1.352069127021127e-14)
    sum e = 1.2317505517971057e-09
    sum de = -1.8713039947118863e-11
Info: cfl dt = 0.00158359041956892 cfl multiplier : 0.41369526315202965        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0881e+04 | 11520 |      1 | 5.517e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.5106974127419 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 1.7341261106117156, dt = 0.00158359041956892 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (2.1%)
   patch tree reduce : 1.80 us    (0.6%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 281.47 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.427083333333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2211463134816487e-27,-1.1649777436962919e-28,4.7163217415261735e-15)
    sum a = (-7.719087054600977e-26,8.91152498797011e-26,-1.4032086694655707e-14)
    sum e = 1.2317209439802564e-09
    sum de = -1.8434532813344162e-11
Info: cfl dt = 0.0023317616084097045 cfl multiplier : 0.6091301754346864       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9110e+04 | 11520 |      1 | 3.957e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.4059315714922 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 1.7357097010312845, dt = 0.0023317616084097045 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (2.0%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 286.79 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.38 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.426909722222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.904062319648883e-28,2.2190052260881748e-29,4.683197340038328e-15)
    sum a = (-2.8096489421421946e-25,4.1113728828961705e-25,-1.4771354634318152e-14)
    sum e = 1.2316782047077376e-09
    sum de = -1.80215992723645e-11
Info: cfl dt = 0.002828294887627615 cfl multiplier : 0.7394201169564575        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9767e+04 | 11520 |      1 | 3.870e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.690692442057372 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7380414626396943, dt = 0.002828294887627615 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (2.2%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1.07 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 274.53 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.50 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.426388888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.193859107312634e-28,1.6198738150443678e-27,4.6405576949427384e-15)
    sum a = (3.7477888766016227e-25,-1.1698595551936859e-25,-1.5646102666859666e-14)
    sum e = 1.2316277373754956e-09
    sum de = -1.7516621647309625e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010346572876950245
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.5365395790780287e-28,8.099369075221839e-28,4.6393206722481034e-15)
    sum a = (-2.3277364821664954e-25,7.078626671221278e-26,-1.5639917553642585e-14)
    sum e = 1.2316283835325187e-09
    sum de = -1.751407846631258e-11
Info: cfl dt = 0.0015790176595137729 cfl multiplier : 0.4131400389854858       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0899e+04 | 11520 |      1 | 5.512e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.471385661276802 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.740869757527322, dt = 0.0015790176595137729 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.2%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.52 us    (0.5%)
   LB compute        : 277.17 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.426388888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.68879233840151e-28,1.2481904396745984e-27,4.614633712900363e-15)
    sum a = (-5.011734253381447e-25,3.3782135561966373e-25,-1.6118973048875282e-14)
    sum e = 1.2316007529457767e-09
    sum de = -1.7230917890842873e-11
Info: cfl dt = 0.002325700696440236 cfl multiplier : 0.6087600259903239        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9531e+04 | 11520 |      1 | 3.901e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.571637121961855 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7424487751868358, dt = 0.002325700696440236 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (1.9%)
   patch tree reduce : 2.26 us    (0.7%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.60 us    (0.5%)
   LB compute        : 305.98 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.426388888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1510481910392245e-27,2.1663038519685807e-27,4.576767587511153e-15)
    sum a = (-5.83975605349625e-25,-2.4977122824848494e-25,-1.6810419828307923e-14)
    sum e = 1.2315609267720177e-09
    sum de = -1.68116016509473e-11
Info: cfl dt = 0.002822574867265106 cfl multiplier : 0.7391733506602159        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7744e+04 | 11520 |      1 | 4.152e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.164006876982832 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7447744758832762, dt = 0.002822574867265106 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.8%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 1.44 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 306.79 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.4265625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.949135863303799e-27,7.960681248591327e-28,4.5285148698666516e-15)
    sum a = (7.469171591012796e-26,4.0816382128665886e-25,-1.7627007626589023e-14)
    sum e = 1.2315139832484083e-09
    sum de = -1.6299494163757802e-11
Info: cfl dt = 0.003153476067557024 cfl multiplier : 0.8261155671068107        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9839e+04 | 11520 |      1 | 3.861e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.319969335457213 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7475970507505412, dt = 0.003153476067557024 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (1.8%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 1.25 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.73 us    (0.5%)
   LB compute        : 337.60 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.42734375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.880546159115712e-27,3.006752081349477e-27,4.471776083076411e-15)
    sum a = (4.351247347836302e-25,-2.0281707766445918e-26,-1.851000607603422e-14)
    sum e = 1.2314633216728368e-09
    sum de = -1.5723795613757634e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012211346721868101
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.201669247759361e-27,2.3660143223165163e-27,4.470383825837611e-15)
    sum a = (7.952914730300019e-26,9.590540587153091e-26,-1.8503044789806735e-14)
    sum e = 1.2314641487889963e-09
    sum de = -1.5721485863263872e-11
Info: cfl dt = 0.001687542568991257 cfl multiplier : 0.44203852236893687       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0878e+04 | 11520 |      1 | 5.518e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.57450539222157 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.7507505268180983, dt = 0.001687542568991257 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.77 us    (1.9%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 333.73 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.427777777777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.6711275409036403e-27,2.66280627130581e-27,4.439170126222754e-15)
    sum a = (8.880458914804875e-26,-1.5533036582617225e-26,-1.896437513897062e-14)
    sum e = 1.2314376443701462e-09
    sum de = -1.5412659321664082e-11
Info: cfl dt = 0.0023977434778100506 cfl multiplier : 0.6280256815792913       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6809e+04 | 11520 |      1 | 4.297e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.137710811352589 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7524380693870896, dt = 0.0023977434778100506 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (1.9%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.78 us    (0.5%)
   LB compute        : 322.68 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.427951388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4097009877051272e-27,2.488059609751366e-27,4.393309162120767e-15)
    sum a = (4.761985215185223e-26,-1.4059617112494676e-25,-1.9603748212705842e-14)
    sum e = 1.2314009722142116e-09
    sum de = -1.4972239875782712e-11
Info: cfl dt = 0.002871942744446282 cfl multiplier : 0.7520171210528609        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9415e+04 | 11520 |      1 | 3.916e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.04035713538244 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.7548358128648995, dt = 0.002871942744446282 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (2.1%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 278.43 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.428732638888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.384043739778483e-27,1.9111182509684407e-27,4.336241793368369e-15)
    sum a = (-4.313968060038021e-25,-7.868592531708668e-26,-2.034517434653902e-14)
    sum e = 1.2313585200497793e-09
    sum de = -1.4442721226058985e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010815625831239057
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.01576679008046e-27,2.091412425588105e-27,4.335177126666198e-15)
    sum a = (-3.131016374010415e-26,-5.534199033863908e-26,-2.0339851012827437e-14)
    sum e = 1.2313592160722735e-09
    sum de = -1.4441300836917145e-11
Info: cfl dt = 0.001594957159450295 cfl multiplier : 0.41733904035095365       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0809e+04 | 11520 |      1 | 5.536e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.67571680024153 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.757707755609346, dt = 0.001594957159450295 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.78 us    (2.1%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 303.22 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.60 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.429861111111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.455467970493196e-27,2.008199729609798e-27,4.302743579826089e-15)
    sum a = (-3.7476779263403187e-25,-2.4355801361543807e-25,-2.0741175671049056e-14)
    sum e = 1.2313362043895752e-09
    sum de = -1.4146778976891806e-11
Info: cfl dt = 0.002338176010938871 cfl multiplier : 0.6115593602339691        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9407e+04 | 11520 |      1 | 3.917e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.657371606440943 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7593027127687961, dt = 0.002338176010938871 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.24 us    (2.1%)
   patch tree reduce : 2.30 us    (0.7%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 317.54 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (72.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.4307291666666675
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.712673118898778e-27,1.2537379527398188e-27,4.253927012615062e-15)
    sum a = (-6.175047743158173e-25,2.136014430632477e-25,-2.1314285753318084e-14)
    sum e = 1.2313033837600082e-09
    sum de = -1.3714107452338465e-11
Info: cfl dt = 0.002835312112173073 cfl multiplier : 0.7410395734893127        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9250e+04 | 11520 |      1 | 3.938e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.37222507051191 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.761640888779735, dt = 0.002835312112173073 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.4%)
   patch tree reduce : 1.93 us    (0.7%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 257.78 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.431944444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.6307257611987435e-27,2.3521455396534654e-27,4.1928243439330106e-15)
    sum a = (1.7485761181574817e-25,-1.4680938575799366e-25,-2.1985121791235696e-14)
    sum e = 1.2312650248047327e-09
    sum de = -1.3188329857285242e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011088792062869082
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.55069431131364e-27,1.8889281987075587e-27,4.191873329161352e-15)
    sum a = (2.247630393504712e-25,1.8133710707592566e-25,-2.1980366717391526e-14)
    sum e = 1.2312657099051887e-09
    sum de = -1.3187387906379464e-11
Info: cfl dt = 0.0015846323571418886 cfl multiplier : 0.4136798578297709       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0079e+04 | 11520 |      1 | 5.737e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.790961315298205 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7644762008919082, dt = 0.0015846323571418886 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (2.2%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 285.34 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.4345486111111105
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.187678925108278e-27,2.651711245175369e-27,4.157049269898251e-15)
    sum a = (1.2579540626693862e-25,3.0884114736695216e-25,-2.2344707042607e-14)
    sum e = 1.2312448326171176e-09
    sum de = -1.289337090524105e-11
Info: cfl dt = 0.0023348082790742167 cfl multiplier : 0.6091199052198473       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9623e+04 | 11520 |      1 | 3.889e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.669317175714621 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.76606083324905, dt = 0.0023348082790742167 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.12 us    (2.4%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.5%)
   LB compute        : 270.95 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.435677083333332
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.926599091476341e-27,3.3673404305888054e-27,4.104589990168213e-15)
    sum a = (7.256147089308331e-26,1.647389479847861e-25,-2.2866182493767728e-14)
    sum e = 1.2312149833953098e-09
    sum de = -1.2459780882858885e-11
Info: cfl dt = 0.002836181507386138 cfl multiplier : 0.7394132701465649        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9573e+04 | 11520 |      1 | 3.895e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.577359499574193 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7683956415281241, dt = 0.002836181507386138 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.5%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 1.30 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.3%)
   LB compute        : 367.23 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.43767361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.7887780637622706e-27,3.747345075556405e-27,4.0391285736352676e-15)
    sum a = (5.889239870038016e-26,-6.550503427412292e-26,-2.3475162994586983e-14)
    sum e = 1.2311801696969645e-09
    sum de = -1.1932754129295688e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011573000314795176
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.843039675931458e-27,3.392304239382297e-27,4.038264984016568e-15)
    sum a = (1.3229709157937698e-25,1.8071578561262096e-25,-2.3470845046303484e-14)
    sum e = 1.2311808592353391e-09
    sum de = -1.1932231788406896e-11
Info: cfl dt = 0.001584291318122255 cfl multiplier : 0.41313775671552166       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0771e+04 | 11520 |      1 | 5.546e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.40990003410975 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.7712318230355102, dt = 0.001584291318122255 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (2.0%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.5%)
   LB compute        : 279.07 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.441840277777779
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.5230175159815535e-27,4.016399459219596e-27,4.001086451223089e-15)
    sum a = (-7.921848657134784e-27,-1.2468590365389455e-25,-2.380019693054378e-14)
    sum e = 1.2311619736138483e-09
    sum de = -1.163794455617121e-11
Info: cfl dt = 0.0023341846502880625 cfl multiplier : 0.6087585044770144       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6688e+04 | 11520 |      1 | 4.316e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.213152295712812 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7728161143536325, dt = 0.0023341846502880625 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (2.0%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.5%)
   LB compute        : 295.50 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.444357638888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.5302986268796554e-27,3.633621057719387e-27,3.945271502208708e-15)
    sum a = (-2.5389857796900897e-25,-4.8174603458374276e-26,-2.42699459015926e-14)
    sum e = 1.2311350620929426e-09
    sum de = -1.120446092755976e-11
Info: cfl dt = 0.002834195835401842 cfl multiplier : 0.7391723363180095        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9465e+04 | 11520 |      1 | 3.910e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.49244710134401 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.7751502990039205, dt = 0.002834195835401842 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.0%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 297.01 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.447135416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.745724067512796e-27,3.4699694222953836e-27,3.875937482190131e-15)
    sum a = (7.469171591012796e-26,3.0489131806451524e-26,-2.4815637312105337e-14)
    sum e = 1.2311038298839696e-09
    sum de = -1.0678531943748282e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012184955017640723
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.259623235172855e-27,3.616978518523725e-27,3.875164184028465e-15)
    sum a = (1.0408244012966584e-25,1.06024069702493e-25,-2.4811770821283632e-14)
    sum e = 1.2311045198191271e-09
    sum de = -1.0678408414317103e-11
Info: cfl dt = 0.0015843080954585182 cfl multiplier : 0.4130574454393365       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0665e+04 | 11520 |      1 | 5.575e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.30229892795864 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.7779844948393224, dt = 0.0015843080954585182 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (2.0%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1.06 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 271.52 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.453125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.024374009250851e-27,3.891580415252136e-27,3.8358601738499914e-15)
    sum a = (-6.234295182694727e-25,-4.617749875489492e-26,-2.510581137054372e-14)
    sum e = 1.231087619137133e-09
    sum de = -1.0384787743781043e-11
Info: cfl dt = 0.0023351924643308848 cfl multiplier : 0.6087049636262244       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9790e+04 | 11520 |      1 | 3.867e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.749068816119177 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.779568802934781, dt = 0.0023351924643308848 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (2.1%)
   patch tree reduce : 1.94 us    (0.7%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 274.11 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 us    (63.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.454947916666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.001195618085496e-27,3.630847301186776e-27,3.777000346915481e-15)
    sum a = (-1.4335883263142654e-25,1.4592178366755838e-25,-2.552361975868103e-14)
    sum e = 1.2310636209338833e-09
    sum de = -9.952560499391024e-12
Info: cfl dt = 0.002836755743787258 cfl multiplier : 0.739136642417483         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9695e+04 | 11520 |      1 | 3.879e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.670122675087324 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7819039953991118, dt = 0.002836755743787258 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (2.1%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.5%)
   LB compute        : 296.53 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.457725694444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.93375866238641e-27,4.320125799540415e-27,3.704108240462315e-15)
    sum a = (-7.822548173267339e-26,-4.6022168389068747e-26,-2.6006324892075675e-14)
    sum e = 1.2310359095583647e-09
    sum de = -9.428610333410133e-12
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012672418112417975
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.873602817585426e-27,4.095451520398988e-27,3.703423582183523e-15)
    sum a = (-4.744233173376518e-26,-7.411477455134504e-26,-2.6002901600703794e-14)
    sum e = 1.231036599459729e-09
    sum de = -9.428865373390586e-12
Info: cfl dt = 0.001586401961125069 cfl multiplier : 0.41304554747249433       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.9159e+04 | 11520 |      1 | 6.013e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.984148218026437 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.784740751142899, dt = 0.001586401961125069 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.9%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 291.46 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.4631944444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.800791708604408e-27,3.881872267388001e-27,3.6621773836094965e-15)
    sum a = (-3.263047184962661e-26,4.441560860538091e-25,-2.626169412426381e-14)
    sum e = 1.2310216575247674e-09
    sum de = -9.13648262278839e-12
Info: cfl dt = 0.0023385302015861307 cfl multiplier : 0.6086970316483296       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9710e+04 | 11520 |      1 | 3.878e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.728585090468364 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7863271531040241, dt = 0.0023385302015861307 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.7%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 317.41 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (50.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.465972222222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.919369800373495e-27,5.4005039689920955e-27,3.6005583442714244e-15)
    sum a = (-8.259137451500187e-26,-7.855278500352139e-26,-2.662753752075255e-14)
    sum e = 1.2310005425695352e-09
    sum de = -8.706474708525766e-12
Info: cfl dt = 0.002837744028581751 cfl multiplier : 0.7391313544322197        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9530e+04 | 11520 |      1 | 3.901e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.579918648582062 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7886656833056103, dt = 0.002837744028581751 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.01 us    (2.4%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.5%)
   LB compute        : 268.59 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (61.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.471267361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.2508337060204154e-27,4.511515000290521e-27,3.524568440760522e-15)
    sum a = (2.891141909070283e-25,-1.3327345387885577e-25,-2.7046613293721544e-14)
    sum e = 1.2309763550777155e-09
    sum de = -8.18647196827872e-12
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012735330696539931
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.524802933609691e-27,4.354797756198043e-27,3.5239738258745596e-15)
    sum a = (3.028470594999815e-25,-1.8191404843470858e-25,-2.7043640218948706e-14)
    sum e = 1.2309770413685967e-09
    sum de = -8.187093317135527e-12
Info: cfl dt = 0.0015850707458847535 cfl multiplier : 0.41304378481073983      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0748e+04 | 11520 |      1 | 5.552e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.39956600803272 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.791503427334192, dt = 0.0015850707458847535 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.87 us    (2.0%)
   patch tree reduce : 2.16 us    (0.6%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 324.53 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.476041666666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.202007017127177e-27,4.0177863374859015e-27,3.481111961312904e-15)
    sum a = (-2.631213184399379e-25,-2.0015427139315336e-25,-2.7266523546116646e-14)
    sum e = 1.2309640791930957e-09
    sum de = -7.897507770635438e-12
Info: cfl dt = 0.002335371857333141 cfl multiplier : 0.6086958565404932        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9431e+04 | 11520 |      1 | 3.914e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.578034405208784 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7930884980800768, dt = 0.002335371857333141 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.81 us    (1.9%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 330.13 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.478645833333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.3338730422154344e-27,3.6183653967900304e-27,3.417257846655612e-15)
    sum a = (-1.8398881832110102e-25,4.837431392872221e-26,-2.7579381647243932e-14)
    sum e = 1.2309458836490707e-09
    sum de = -7.472271196181252e-12
Info: cfl dt = 0.0028354068183027987 cfl multiplier : 0.7391305710269954       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8709e+04 | 11520 |      1 | 4.013e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.951899338638224 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7954238699374099, dt = 0.0028354068183027987 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (2.0%)
   patch tree reduce : 2.34 us    (0.7%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.4%)
   LB compute        : 312.85 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.4840277777777775
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.752363559073e-27,3.990048772159799e-27,3.3386937598862253e-15)
    sum a = (3.805926813525133e-25,-3.395077995914907e-26,-2.793456796548079e-14)
    sum e = 1.2309252095811112e-09
    sum de = -6.958445920661516e-12
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012658191197805346
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.911048530775664e-27,3.966471841632613e-27,3.3381902110318473e-15)
    sum a = (4.926191601915748e-26,-8.831640799830936e-27,-2.7932050221030638e-14)
    sum e = 1.230925887702543e-09
    sum de = -6.959415823395833e-12
Info: cfl dt = 0.0015849778774320268 cfl multiplier : 0.4130435236756651       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0806e+04 | 11520 |      1 | 5.537e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.435442946923736 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7982592767557126, dt = 0.0015849778774320268 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (2.2%)
   patch tree reduce : 1.99 us    (0.7%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.5%)
   LB compute        : 267.91 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490017361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.37894658587035e-27,3.8749378760564755e-27,3.293922098775135e-15)
    sum a = (1.595575707818702e-25,-4.353688253584999e-25,-2.8119411233184876e-14)
    sum e = 1.2309148712978497e-09
    sum de = -6.673301979784273e-12
Info: cfl dt = 0.0023362246029844853 cfl multiplier : 0.6086956824504434       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5292e+04 | 11520 |      1 | 4.555e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.527285721915062 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7998442546331446, dt = 0.00015574536685547535 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.00 us    (2.4%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 268.16 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.492708333333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.1865172264205164e-27,3.582306561866097e-27,3.289394149227103e-15)
    sum a = (1.0595749954571034e-25,2.637065810683187e-25,-2.813656444259864e-14)
    sum e = 1.2309140431946715e-09
    sum de = -6.645609449615781e-12
Info: cfl dt = 0.002837068903838061 cfl multiplier : 0.7391304549669622        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9847e+04 | 11520 |      1 | 3.860e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4526845835298243 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 876                                                     [SPH][rank=0]
Info: time since start : 412.192952271 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[0. 0. 0. ... 0. 0. 0.]
(11520, 3)
[[0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 ...
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]]
compute original rho
Info: Dumping state to _to_trash/dusty_settle/dump/0000018.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 13.21 us   (72.3%)
Info: dump to _to_trash/dusty_settle/dump/0000018.sham                      [Shamrock Dump][rank=0]
              - took 1.30 ms, bandwidth = 2.27 GB/s
Info: evolve_until (target_time = 1.90s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 1.8, dt = 0.002837068903838061 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.73 us    (1.3%)
   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.19 us    (0.3%)
   LB compute        : 353.81 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.492708333333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.92353043517241e-27,4.254942521024075e-27,3.2095674414195133e-15)
    sum a = (-1.9946637977306605e-25,-4.184156254311863e-25,-2.8450787988818867e-14)
    sum e = 1.230895241271444e-09
    sum de = -6.135543235762802e-12
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012588994641417836
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.2555144201691956e-27,3.310478421670296e-27,3.209121704493877e-15)
    sum a = (-5.054228203461036e-25,-1.1325802673954043e-25,-2.844855930442015e-14)
    sum e = 1.2308959149605768e-09
    sum de = -6.136752144924875e-12
Info: cfl dt = 0.0015861127640236627 cfl multiplier : 0.4130434849889874       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0668e+04 | 11520 |      1 | 5.574e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.323608830925007 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.8028370689038382, dt = 0.0015861127640236627 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (1.8%)
   patch tree reduce : 2.21 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 330.98 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.57 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (60.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498784722222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.570448376409727e-27,3.524057674681282e-27,3.164002242928391e-15)
    sum a = (-7.839745463769522e-26,-1.6176548098182794e-25,-2.861215251924023e-14)
    sum e = 1.2308861950493812e-09
    sum de = -5.853281467005768e-12
Info: cfl dt = 0.0023371062690726806 cfl multiplier : 0.608695656659325        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7386e+04 | 11520 |      1 | 4.207e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.573974669936991 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.804423181667862, dt = 0.0023371062690726806 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.93 us    (1.8%)
   patch tree reduce : 2.15 us    (0.4%)
   gen split merge   : 1.15 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.3%)
   LB compute        : 515.63 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501128472222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.405236502936132e-27,3.1572283732435814e-27,3.097002863260984e-15)
    sum a = (-3.9045615958247524e-25,5.534199033863908e-26,-2.883796948132095e-14)
    sum e = 1.2308727584121453e-09
    sum de = -5.43771840666543e-12
Info: cfl dt = 0.0028378385321380316 cfl multiplier : 0.7391304377728835       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7917e+04 | 11520 |      1 | 4.126e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.38926592846943 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.8067602879369347, dt = 0.0028378385321380316 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.24 us    (2.3%)
   patch tree reduce : 2.46 us    (0.7%)
   gen split merge   : 1.78 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (0.4%)
   LB compute        : 304.20 us  (86.5%)
   LB move op cnt    : 0
   LB apply          : 5.07 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.504166666666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.817078578034732e-27,3.545554287809012e-27,3.0149014831597254e-15)
    sum a = (-4.777740152290449e-25,-2.9290868984363907e-27,-2.908801062365289e-14)
    sum e = 1.2308578288942226e-09
    sum de = -4.936667230050912e-12
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011930328292524519
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.894917120731107e-27,3.42836307430623e-27,3.0145466949656674e-15)
    sum a = (-1.9205490231793154e-25,-4.810803330159163e-26,-2.9086236683196914e-14)
    sum e = 1.2308584902409144e-09
    sum de = -4.938195997975664e-12
Info: cfl dt = 0.0015864162760404314 cfl multiplier : 0.41304347925762785      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0275e+04 | 11520 |      1 | 5.682e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.980086030294796 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.8095981264690726, dt = 0.0015864162760404314 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.44 us    (1.9%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 317.04 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.509114583333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.906532226211412e-27,3.2855146128768036e-27,2.9684063327608044e-15)
    sum a = (2.25184650343428e-25,2.5611758319509715e-25,-2.921495438345029e-14)
    sum e = 1.2308506693159244e-09
    sum de = -4.65960851977793e-12
Info: cfl dt = 0.0023383781116856385 cfl multiplier : 0.6086956528384185       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9445e+04 | 11520 |      1 | 3.912e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.597425803213648 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.811184542745113, dt = 0.0023383781116856385 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.83 us    (2.2%)
   patch tree reduce : 2.64 us    (0.9%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 284.47 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.61 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.512152777777779
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.046667701102245e-27,4.0815827377359364e-27,2.899988622969123e-15)
    sum a = (-3.2397476300887356e-27,-1.3686824234511863e-25,-2.9389728702006146e-14)
    sum e = 1.2308400125492781e-09
    sum de = -4.2514976267295014e-12
Info: cfl dt = 0.0028407434890424486 cfl multiplier : 0.7391304352256123       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9387e+04 | 11520 |      1 | 3.920e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.47464743858496 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.8135229208567987, dt = 0.0028407434890424486 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.97 us    (2.3%)
   patch tree reduce : 2.28 us    (0.8%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 279.17 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.516145833333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.221761082223264e-27,3.296609639007245e-27,2.8162955982940236e-15)
    sum a = (6.15862710448512e-25,-2.4564387852796095e-25,-2.9578339166919176e-14)
    sum e = 1.2308284284417514e-09
    sum de = -3.759880547482414e-12
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011719372491048907
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.412517613834233e-27,3.1423194318808013e-27,2.8160277013185062e-15)
    sum a = (5.863943210460611e-25,-6.728023845499347e-26,-2.9576999681979734e-14)
    sum e = 1.2308290774116783e-09
    sum de = -3.7617234928697345e-12
Info: cfl dt = 0.0015887391071767291 cfl multiplier : 0.41304347840853745      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0728e+04 | 11520 |      1 | 5.558e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.401089938481512 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.8163636643458412, dt = 0.0015887391071767291 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.15 us    (2.0%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1.21 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 340.16 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.520138888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.568255469220998e-27,3.24390826488765e-27,2.7690394678174532e-15)
    sum a = (3.5992264767150196e-25,1.5692804958895572e-25,-2.967155776966468e-14)
    sum e = 1.230823113603783e-09
    sum de = -3.488515765635225e-12
Info: cfl dt = 0.002342346012928497 cfl multiplier : 0.6086956522723583        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8711e+04 | 11520 |      1 | 4.012e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.254616141132352 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.817952403453018, dt = 0.002342346012928497 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (1.8%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.24 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.4%)
   LB compute        : 333.88 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.521614583333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.847772209875493e-27,3.886379621753493e-27,2.699463298712284e-15)
    sum a = (6.102264371742481e-26,-3.277470718932234e-26,-2.979632725891004e-14)
    sum e = 1.2308151774015814e-09
    sum de = -3.0886291294254646e-12
Info: cfl dt = 0.002846325286128875 cfl multiplier : 0.7391304348482389        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9533e+04 | 11520 |      1 | 3.901e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.61760968515813 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.8202947494659465, dt = 0.002846325286128875 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 24.61 us   (7.9%)
   patch tree reduce : 2.31 us    (0.7%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 270.42 us  (87.1%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.524131944444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.0356942149598354e-27,3.541393653010096e-27,2.6145071323437342e-15)
    sum a = (1.1339116705310573e-25,2.4943837746457175e-25,-2.992473696301927e-14)
    sum e = 1.2308068705501092e-09
    sum de = -2.6074719581988885e-12
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011300443505916299
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.8581737968727815e-27,3.850667506396136e-27,2.61432438444972e-15)
    sum a = (-4.348362641042387e-25,1.620539516612194e-25,-2.9923823223301607e-14)
    sum e = 1.2308075062652134e-09
    sum de = -2.6096161904617292e-12
Info: cfl dt = 0.0015920809261654918 cfl multiplier : 0.41304347828274635      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0850e+04 | 11520 |      1 | 5.525e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.546009504159827 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.8231410747520753, dt = 0.0015920809261654918 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.9%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.63 us    (0.5%)
   LB compute        : 288.15 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.526736111111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.446149411792131e-27,4.080889298602784e-27,2.566684536658325e-15)
    sum a = (1.1205976391745282e-25,-1.2659424814833038e-25,-2.998489323635437e-14)
    sum e = 1.230803363629548e-09
    sum de = -2.3424416623345025e-12
Info: cfl dt = 0.0023474288356819645 cfl multiplier : 0.6086956521884975       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9809e+04 | 11520 |      1 | 3.865e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.830789490567549 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.824733155678241, dt = 0.0023474288356819645 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.1%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 285.44 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.528472222222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.751323400373272e-27,3.509322093101791e-27,2.496248519439166e-15)
    sum a = (-3.3746631478348965e-25,-9.013599228370166e-26,-3.006065802863553e-14)
    sum e = 1.2307980955670034e-09
    sum de = -1.9517988537069578e-12
Info: cfl dt = 0.0028525681453518783 cfl multiplier : 0.7391304347923316       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9827e+04 | 11520 |      1 | 3.862e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.880566881893735 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.8270805845139229, dt = 0.0028525681453518783 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (2.0%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 297.04 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.530815972222221
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.221414362656688e-27,3.31333885809455e-27,2.4104095176892143e-15)
    sum a = (-2.917548071260732e-25,3.562169089439347e-25,-3.0130112786474007e-14)
    sum e = 1.2307930023412522e-09
    sum de = -1.4824433237976485e-12
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010525459864831329
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.207545579993636e-27,3.9751398307970194e-27,2.410310455474273e-15)
    sum a = (-2.140008640039436e-25,1.9728065962536919e-25,-3.012961747558858e-14)
    sum e = 1.2307936230360664e-09
    sum de = -1.4848773874577006e-12
Info: cfl dt = 0.0015944712418294695 cfl multiplier : 0.4130434782641106       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.9930e+04 | 11520 |      1 | 5.780e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.76616729445376 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.8299331526592748, dt = 0.0015944712418294695 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.0%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 302.30 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.534201388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.375357850216555e-27,4.034168837006631e-27,2.362270353336354e-15)
    sum a = (4.025275480123949e-25,1.175129692605645e-25,-3.015790784675488e-14)
    sum e = 1.2307912669942607e-09
    sum de = -1.2246950255937317e-12
Info: cfl dt = 0.0023495383209238964 cfl multiplier : 0.6086956521760737       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9773e+04 | 11520 |      1 | 3.869e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.835194064650493 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.8315276239011042, dt = 0.0023495383209238964 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (2.0%)
   patch tree reduce : 1.95 us    (0.7%)
   gen split merge   : 1.51 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.5%)
   LB compute        : 277.87 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.535677083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.91358815753097e-27,4.251301965575024e-27,2.291390639079834e-15)
    sum a = (2.3206356654430132e-25,-1.6266972561145887e-25,-3.018576527860956e-14)
    sum e = 1.230788614668467e-09
    sum de = -8.449465554322902e-13
Info: cfl dt = 0.0028520882713995704 cfl multiplier : 0.739130434784049        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7716e+04 | 11520 |      1 | 4.156e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.349908286464395 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.8338771622220282, dt = 0.0028520882713995704 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (2.0%)
   patch tree reduce : 2.34 us    (0.7%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 318.94 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.5375000000000005
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.4184726164600456e-27,3.514522886600435e-27,2.2052654459135748e-15)
    sum a = (-1.4707566638512422e-25,6.603759552838408e-26,-3.019773488111993e-14)
    sum e = 1.2307866663991497e-09
    sum de = -3.8985825128735265e-13
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010312630694995002
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.953807627253818e-27,3.8955676902677635e-27,2.2052483767322103e-15)
    sum a = (6.0800743194816e-26,-3.221163461320247e-26,-3.019764953534021e-14)
    sum e = 1.2307872674142531e-09
    sum de = -3.92555442415475e-13
Info: cfl dt = 0.0015932836834994916 cfl multiplier : 0.4130434782613497       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0886e+04 | 11520 |      1 | 5.516e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.615589661961465 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.8367292504934278, dt = 0.0015932836834994916 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (1.9%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.84 us    (0.6%)
   LB compute        : 312.79 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.54045138888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.530809756030759e-27,3.559943149821927e-27,2.1571350761542868e-15)
    sum a = (-4.870272670218326e-25,4.932182916026186e-25,-3.0194112769175134e-14)
    sum e = 1.2307866528862087e-09
    sum de = -1.4067963092425088e-13
Info: cfl dt = 0.002347587717683879 cfl multiplier : 0.6086956521742332        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9714e+04 | 11520 |      1 | 3.877e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.794787276515063 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.8383225341769274, dt = 0.002347587717683879 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (2.0%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.5%)
   LB compute        : 280.97 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.541579861111112
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.361489067553504e-27,5.2649366184607714e-27,2.0862545654068103e-15)
    sum a = (2.3432695187491125e-25,2.212237260148606e-25,-3.017561267257021e-14)
    sum e = 1.2307865405587249e-09
    sum de = 2.2648227919687195e-13
Info: cfl dt = 0.002850042293265586 cfl multiplier : 0.7391304347828221        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7995e+04 | 11520 |      1 | 4.115e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.537651903078345 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.8406701218946113, dt = 0.002850042293265586 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (1.8%)
   patch tree reduce : 1.91 us    (0.5%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 334.41 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.544704861111112
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.72358583504717e-27,5.563635525066234e-27,2.00027450836471e-15)
    sum a = (-3.170070865989567e-25,-2.7441328128419413e-25,-3.0132163421096736e-14)
    sum e = 1.2307876319758436e-09
    sum de = 6.658652447924763e-13
Info: cfl dt = 0.0031848174626057484 cfl multiplier : 0.8260869565218814       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9750e+04 | 11520 |      1 | 3.872e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.496257976249176 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.843520164187877, dt = 0.0031848174626057484 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (1.9%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.57 us    (0.5%)
   LB compute        : 320.24 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.5465277777777775
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.496016259385099e-27,3.926772451259629e-27,1.9043709842172717e-15)
    sum a = (-7.895220594421726e-26,-3.9769566413258793e-25,-3.0056844381111086e-14)
    sum e = 1.2307903900635592e-09
    sum de = 1.1484994220453497e-12
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012120345752693867
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.140975423210991e-27,3.8038603649083386e-27,1.904490922914062e-15)
    sum a = (2.1342392264516066e-25,-3.378379981588594e-25,-3.0057444074706926e-14)
    sum e = 1.230791100954607e-09
    sum de = 1.1447072663606005e-12
Info: cfl dt = 0.0017042137411037402 cfl multiplier : 0.4420289855072938       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0917e+04 | 11520 |      1 | 5.507e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.818231810847593 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.8467049816504826, dt = 0.0017042137411037402 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.7%)
   patch tree reduce : 2.44 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.56 us    (0.5%)
   LB compute        : 317.09 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.548784722222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.328264759156197e-27,3.25604344971782e-27,1.8532656587422704e-15)
    sum a = (-2.1914895612846816e-25,-1.887596795571906e-25,-3.000565271383455e-14)
    sum e = 1.2307930619670155e-09
    sum de = 1.4001159422192291e-12
Info: cfl dt = 0.0024213628298434525 cfl multiplier : 0.6280193236715292       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9301e+04 | 11520 |      1 | 3.932e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.604772576218172 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.8484091953915862, dt = 0.0024213628298434525 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.9%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 1.44 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.61 us    (0.5%)
   LB compute        : 292.43 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.36 us    (62.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.55
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.190903040797976e-27,2.8684109742855424e-27,1.7806552183502648e-15)
    sum a = (-2.172849917385541e-25,-7.438660269154084e-26,-2.9918606296481266e-14)
    sum e = 1.2307966861490752e-09
    sum de = 1.7581241704094255e-12
Info: cfl dt = 0.002899564579987489 cfl multiplier : 0.7520128824476862        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9707e+04 | 11520 |      1 | 3.878e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.478453762590245 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.8508305582214297, dt = 0.002899564579987489 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.9%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.5%)
   LB compute        : 293.23 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.551388888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.745654347320019e-27,2.8987489363609666e-27,1.6940096727300771e-15)
    sum a = (3.395965598005343e-25,-4.096283647358771e-26,-2.9793834979046317e-14)
    sum e = 1.2308022310733745e-09
    sum de = 2.1795577982307495e-12
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010072245600863144
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.01060886617831e-27,2.8300984621788636e-27,1.6941905639763965e-15)
    sum a = (1.9083444944358303e-26,1.8211375890505652e-25,-2.979473943529751e-14)
    sum e = 1.2308027959996782e-09
    sum de = 2.1761779585625263e-12
Info: cfl dt = 0.0016088007412450621 cfl multiplier : 0.41733762748256203      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.8251e+04 | 11520 |      1 | 6.312e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.53752150246971 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.8537301228014171, dt = 0.0016088007412450621 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.5%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 340.45 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.552951388888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.451636154863336e-27,3.551448520440808e-27,1.6462554538230054e-15)
    sum a = (-2.3965256441752287e-27,-6.023267785693741e-25,-2.9715872417535536e-14)
    sum e = 1.2308063061261888e-09
    sum de = 2.4072197816998885e-12
Info: cfl dt = 0.002357273012521624 cfl multiplier : 0.611558418321708         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9378e+04 | 11520 |      1 | 3.921e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.769832743957574 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.8553389235426623, dt = 0.002357273012521624 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (1.5%)
   patch tree reduce : 2.11 us    (0.5%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.3%)
   LB compute        : 389.58 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.553385416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.520980068178591e-27,1.402827366367618e-27,1.576270470388002e-15)
    sum a = (-5.021165025592322e-25,-3.516568532043235e-25,-2.958826617764523e-14)
    sum e = 1.2308121821726712e-09
    sum de = 2.741035765076123e-12
Info: cfl dt = 0.002856308953550613 cfl multiplier : 0.7410389455478054        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9628e+04 | 11520 |      1 | 3.888e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.825140278421134 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.857696196555184, dt = 0.002856308953550613 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.8%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 317.76 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.553559027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0504215988994897e-26,7.40072914857064e-28,1.4919076421574185e-15)
    sum a = (2.5660576434483653e-25,-2.096959938653325e-25,-2.941469871838031e-14)
    sum e = 1.2308204181172878e-09
    sum de = 3.138098308601314e-12
Info: cfl dt = 0.003189566204150383 cfl multiplier : 0.8273592970318703        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9403e+04 | 11520 |      1 | 3.918e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.245006884337865 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.8605525055087346, dt = 0.003189566204150383 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.8%)
   patch tree reduce : 2.35 us    (0.7%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 305.39 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (61.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.554427083333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.612514033754729e-27,1.4371526034586696e-28,1.3983353943641067e-15)
    sum a = (5.498029248678671e-25,4.921753591463572e-25,-2.919678056666929e-14)
    sum e = 1.23083100393868e-09
    sum de = 3.5718798510711474e-12
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012174389416124115
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.185355527732755e-27,1.3483923944151425e-27,1.3986829265498527e-15)
    sum a = (4.0223907733300347e-25,2.1988122785307727e-25,-2.919851822774501e-14)
    sum e = 1.2308316436466483e-09
    sum de = 3.567462472335131e-12
Info: cfl dt = 0.0017065761207847665 cfl multiplier : 0.4424530990106234       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0860e+04 | 11520 |      1 | 5.523e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.792026522278316 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.863742071712885, dt = 0.0017065761207847665 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.8%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 287.87 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.5550347222222225
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.724911943319459e-27,1.2592854658050392e-27,1.3488506613876687e-15)
    sum a = (1.6801198069326616e-25,-1.926096536244536e-26,-2.907134047793144e-14)
    sum e = 1.2308377394178252e-09
    sum de = 3.796363555008032e-12
Info: cfl dt = 0.002424079789581936 cfl multiplier : 0.6283020660070823        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7687e+04 | 11520 |      1 | 4.161e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.76552802581299 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.8654486478336698, dt = 0.002424079789581936 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (2.1%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.60 us    (0.5%)
   LB compute        : 292.50 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.5550347222222225
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.48914263804759e-27,1.0318374301310013e-27,1.2784879317347219e-15)
    sum a = (-1.5317793075686672e-25,-4.57115076574164e-26,-2.887876051203529e-14)
    sum e = 1.2308471517636298e-09
    sum de = 4.1159899924583776e-12
Info: cfl dt = 0.0029035123859008248 cfl multiplier : 0.7522013773380548       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6516e+04 | 11520 |      1 | 4.345e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.08636309203787 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.8678727276232518, dt = 0.0029035123859008248 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.44 us    (2.0%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.4%)
   LB compute        : 306.92 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.5550347222222225
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.401708537276352e-27,8.68879233840151e-28,1.194871507500054e-15)
    sum a = (-2.804545230122192e-25,-1.4647653497408043e-25,-2.862983662491478e-14)
    sum e = 1.2308595016233073e-09
    sum de = 4.490704988079279e-12
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010370339511218676
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.484921233254659e-27,6.830375461552663e-28,1.1952328842947386e-15)
    sum a = (-3.273032708480058e-26,-1.128142256943228e-25,-2.8631643508671397e-14)
    sum e = 1.2308600052201071e-09
    sum de = 4.4868842810685645e-12
Info: cfl dt = 0.0016110582590058166 cfl multiplier : 0.417400459112685        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0915e+04 | 11520 |      1 | 5.508e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.97753514174756 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.8707762400091528, dt = 0.0016110582590058166 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (1.9%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 304.94 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.5544270833333345
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.251925684515401e-27,5.152252759323481e-28,1.1491030153964887e-15)
    sum a = (2.398300848356099e-25,-1.477191779006898e-25,-2.8484787886552605e-14)
    sum e = 1.2308672405712146e-09
    sum de = 4.691745758214753e-12
Info: cfl dt = 0.0023604732400508174 cfl multiplier : 0.6116003060751233       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9162e+04 | 11520 |      1 | 3.950e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.681589771505454 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.8723872982681586, dt = 0.0023604732400508174 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.7%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 311.98 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.554079861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.439215020460606e-27,2.0733830081261384e-28,1.0819837323232827e-15)
    sum a = (4.0530130454500516e-25,1.53688301958867e-25,-2.8259041932678875e-14)
    sum e = 1.2308784937827514e-09
    sum de = 4.986722095768431e-12
Info: cfl dt = 0.0028599822285280165 cfl multiplier : 0.7410668707167488       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5924e+04 | 11520 |      1 | 4.444e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.12278185307528 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.8747477715082095, dt = 0.0028599822285280165 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.0%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 298.03 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.553385416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.113359397872922e-27,9.90231082141848e-28,1.0014298082422286e-15)
    sum a = (-1.9355273084554106e-25,-1.8275727042062208e-25,-2.7968933373295524e-14)
    sum e = 1.230893114934079e-09
    sum de = 5.3360397098655935e-12
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010488104724312728
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.967676409916869e-27,5.228531063970262e-28,1.0018446609041055e-15)
    sum a = (-2.8062649591724105e-25,-2.612878653718826e-25,-2.7971007636442958e-14)
    sum e = 1.2308935779155755e-09
    sum de = 5.332209565899567e-12
Info: cfl dt = 0.0015964985098656298 cfl multiplier : 0.413688956905583        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0374e+04 | 11520 |      1 | 5.654e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.209343126461558 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.8776077537367375, dt = 0.0015964985098656298 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (2.0%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 290.52 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.552864583333332
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.48914263804759e-27,-2.4963808793491966e-29,9.571860227151525e-16)
    sum a = (3.662024324613315e-25,1.546646642583458e-26,-2.7800959030125373e-14)
    sum e = 1.2309020965282839e-09
    sum de = 5.524116548407911e-12
Info: cfl dt = 0.002350689464292002 cfl multiplier : 0.6091259712703887        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9726e+04 | 11520 |      1 | 3.875e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.830567932879859 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.879204252246603, dt = 0.002350689464292002 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (2.0%)
   patch tree reduce : 1.71 us    (0.6%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.5%)
   LB compute        : 271.88 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (58.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.5524305555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.116133154405532e-27,2.4963808793491966e-28,8.919703423991433e-16)
    sum a = (3.69486560195942e-25,6.01794217315113e-26,-2.7540769047223646e-14)
    sum e = 1.2309152477487507e-09
    sum de = 5.801458442888552e-12
Info: cfl dt = 0.0028534562786665784 cfl multiplier : 0.7394173141802591       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9564e+04 | 11520 |      1 | 3.897e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.717566316461404 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.881554941710895, dt = 0.0028534562786665784 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (2.0%)
   patch tree reduce : 1.96 us    (0.7%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 268.21 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.551736111111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.109259533068023e-27,4.680714148779744e-28,8.136897749676899e-16)
    sum a = (6.383634234410461e-25,-2.5054788007761584e-25,-2.7209506217983787e-14)
    sum e = 1.2309321383197603e-09
    sum de = 6.129902570024102e-12
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010634526734644158
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.651589705187337e-27,-2.4963808793491966e-29,8.141623969679705e-16)
    sum a = (5.614748923570909e-25,-2.5942390098196853e-25,-2.721186932800212e-14)
    sum e = 1.230932572999382e-09
    sum de = 6.125985859185074e-12
Info: cfl dt = 0.0015942911247313724 cfl multiplier : 0.413139104726753        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0924e+04 | 11520 |      1 | 5.506e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.657853793130688 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.8844083979895616, dt = 0.0015942911247313724 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.8%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 307.28 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.549652777777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.9387342763065104e-27,-3.758440101686846e-28,7.707753836954135e-16)
    sum a = (-5.946934005916309e-26,6.104649802360525e-25,-2.701917422745746e-14)
    sum e = 1.2309423444518248e-09
    sum de = 6.306356543300377e-12
Info: cfl dt = 0.0023491517042384578 cfl multiplier : 0.6087594031511686       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9733e+04 | 11520 |      1 | 3.874e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.813581485527244 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.886002689114293, dt = 0.0023491517042384578 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.8%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 297.08 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.549392361111112
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.535091930817707e-27,1.6808964587617923e-27,7.07456850556187e-16)
    sum a = (1.822247091663609e-25,1.3571713338408538e-25,-2.6726152759902833e-14)
    sum e = 1.2309573145367536e-09
    sum de = 6.56681793697467e-12
Info: cfl dt = 0.002852334358481706 cfl multiplier : 0.7391729354341123        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9758e+04 | 11520 |      1 | 3.871e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.845914996748764 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.8883518408185314, dt = 0.002852334358481706 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.9%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 295.59 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.546527777777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.741797562491185e-27,1.52279233640301e-27,6.315691027090358e-16)
    sum a = (-2.143115247355959e-25,-5.218198820886289e-26,-2.6356096149903407e-14)
    sum e = 1.2309763609264302e-09
    sum de = 6.8747198576972875e-12
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010787476499654024
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.2743588167523466e-27,1.3376440878512779e-27,6.320968653008046e-16)
    sum a = (-7.495799653725855e-26,-3.1152336993398623e-25,-2.6358734962849275e-14)
    sum e = 1.230976768422014e-09
    sum de = 6.870721668182242e-12
Info: cfl dt = 0.0015938503218492575 cfl multiplier : 0.4130576451447041       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0964e+04 | 11520 |      1 | 5.495e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.686451688888628 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.891204175177013, dt = 0.0015938503218492575 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (2.2%)
   patch tree reduce : 1.94 us    (0.7%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 265.00 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.543402777777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.2050149034370916e-27,3.8763247543227803e-28,5.900812237079966e-16)
    sum a = (-2.1963713727820753e-25,-2.7859333237883773e-25,-2.6144843035670055e-14)
    sum e = 1.2309877233485221e-09
    sum de = 7.0395956277487106e-12
Info: cfl dt = 0.002348739323411994 cfl multiplier : 0.6087050967631361        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9944e+04 | 11520 |      1 | 3.847e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.914658519440835 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.8927980254988623, dt = 0.002348739323411994 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.6%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 334.38 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.542187500000001
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.804146314480898e-27,-2.260611574077328e-28,5.288442586244536e-16)
    sum a = (-1.5666176896182514e-25,2.7462963429373775e-25,-2.582130407700963e-14)
    sum e = 1.2310044030024317e-09
    sum de = 7.283070490533855e-12
Info: cfl dt = 0.0028519468572203305 cfl multiplier : 0.7391367311754241       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9789e+04 | 11520 |      1 | 3.867e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.864277743996404 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.8951467648222744, dt = 0.0028519468572203305 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.5%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.3%)
   LB compute        : 350.17 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (72.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.540972222222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.245173603165923e-27,1.1760727698267327e-27,4.555832259498587e-16)
    sum a = (1.0828745503310293e-26,4.91842508362444e-26,-2.5415381127670602e-14)
    sum e = 1.231025468850679e-09
    sum de = 7.570260845386423e-12
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010677170342107174
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.973345462970122e-27,8.529301337776422e-28,4.561620612899203e-16)
    sum a = (-2.3934190368587054e-25,-3.2111224626721976e-25,-2.5418275303940438e-14)
    sum e = 1.2310258489771156e-09
    sum de = 7.566198419572798e-12
Info: cfl dt = 0.001593739210848242 cfl multiplier : 0.41304557705847467       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0957e+04 | 11520 |      1 | 5.497e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.67769053335889 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.8979987116794947, dt = 0.001593739210848242 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (1.8%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 317.51 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.538541666666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.702843431046609e-27,-1.6295819629085034e-28,4.1564783224725706e-16)
    sum a = (-1.0074283726440313e-25,-4.065883275761363e-25,-2.5184857501394188e-14)
    sum e = 1.23103791076931e-09
    sum de = 7.723484043615058e-12
Info: cfl dt = 0.00234868220239239 cfl multiplier : 0.6086970513723164         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6035e+04 | 11520 |      1 | 4.425e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.96642705696892 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.899592450890343, dt = 0.00040754910965712376 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.8%)
   patch tree reduce : 1.68 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 284.27 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.536892361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.719485970242271e-27,-4.451879234839401e-28,4.0556976954776596e-16)
    sum a = (-2.718281401958014e-25,-1.141678188822366e-26,-2.512558695834832e-14)
    sum e = 1.231041175414374e-09
    sum de = 7.761735497359387e-12
Info: cfl dt = 0.002852010214150371 cfl multiplier : 0.7391313675815443        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8875e+04 | 11520 |      1 | 3.990e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6774824059702746 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 920                                                     [SPH][rank=0]
Info: time since start : 435.08846361200006 (s)                                       [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[0. 0. 0. ... 0. 0. 0.]
(11520, 3)
[[0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 ...
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]]
compute original rho
Info: Dumping state to _to_trash/dusty_settle/dump/0000019.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.06 us   (70.2%)
Info: dump to _to_trash/dusty_settle/dump/0000019.sham                      [Shamrock Dump][rank=0]
              - took 1.20 ms, bandwidth = 2.47 GB/s
Info: evolve_until (target_time = 2.00s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 1.9000000000000001, dt = 0.002852010214150371 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.57 us    (1.2%)
   patch tree reduce : 1.14 us    (0.4%)
   gen split merge   : 771.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 278.83 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.536892361111112
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.428180764324182e-27,-3.259163925817007e-28,3.339234167348115e-16)
    sum a = (-2.0277269755993742e-25,-5.965795550338058e-26,-2.4693932074341746e-14)
    sum e = 1.2310633472862546e-09
    sum de = 8.036789197118844e-12
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01056618601628906
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.34635494661218e-27,-5.020499324024495e-28,3.345389588041585e-16)
    sum a = (-2.600674124975341e-25,1.5334435614882331e-25,-2.4697009784312643e-14)
    sum e = 1.2310637115706078e-09
    sum de = 8.032667914964727e-12
Info: cfl dt = 0.0015939102987743003 cfl multiplier : 0.4130437891938481       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.8092e+04 | 11520 |      1 | 6.367e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.124865165958752 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.9028520102141504, dt = 0.0015939102987743003 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.8%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 304.29 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.535763888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.84840487901463e-27,2.0317766601369853e-28,2.9516975172969465e-16)
    sum a = (-2.676120302662339e-26,3.995651760355672e-25,-2.445069756048622e-14)
    sum e = 1.2310765176146757e-09
    sum de = 8.181645208056698e-12
Info: cfl dt = 0.002349075913858633 cfl multiplier : 0.6086958594625654        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9593e+04 | 11520 |      1 | 3.893e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.740037462690406 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.9044459205129247, dt = 0.002349075913858633 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.4%)
   patch tree reduce : 2.11 us    (0.5%)
   gen split merge   : 971.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 386.40 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.5348090277777775
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.790155991829816e-27,1.2676067354028699e-27,2.3792950680852816e-16)
    sum a = (-1.7041960136357183e-26,3.050466484303414e-25,-2.4080697745250977e-14)
    sum e = 1.2310958652890793e-09
    sum de = 8.395747475448086e-12
Info: cfl dt = 0.0028528759930664103 cfl multiplier : 0.7391305729750437       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7759e+04 | 11520 |      1 | 4.150e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.37731481219294 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.9067949964267834, dt = 0.0028528759930664103 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (2.0%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 305.99 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.533333333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.745775887308051e-27,2.039057771035087e-27,1.696648411419601e-16)
    sum a = (2.075213687437661e-25,-1.156101722791939e-25,-2.3620450393111423e-14)
    sum e = 1.2311200768384145e-09
    sum de = 8.647217928340462e-12
Info: cfl dt = 0.0031893867573575957 cfl multiplier : 0.8260870486500291       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9769e+04 | 11520 |      1 | 3.870e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.53996316751808 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.9096478724198498, dt = 0.0031893867573575957 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.2%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 273.34 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.529427083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.798538031421662e-27,1.0394652605956794e-27,9.498660376622311e-17)
    sum a = (-3.9276392501760697e-26,-2.779304045675439e-25,-2.309233131842475e-14)
    sum e = 1.231148020733479e-09
    sum de = 8.917442050358444e-12
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012123524679706272
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.2229227809110255e-27,7.804657443632002e-28,9.582879175774464e-17)
    sum a = (-3.9360714700352048e-25,-4.179607293598381e-25,-2.3096542258196587e-14)
    sum e = 1.2311484199694957e-09
    sum de = 8.91225385652744e-12
Info: cfl dt = 0.0017074812643736838 cfl multiplier : 0.4420290162166764       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0992e+04 | 11520 |      1 | 5.488e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.921899765832006 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.9128372591772074, dt = 0.0017074812643736838 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.6%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 359.28 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.527604166666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.466952585786708e-27,-1.4770253536149414e-28,5.638516342206314e-17)
    sum a = (-1.852869363783626e-25,4.338488067786295e-25,-2.2807289909856834e-14)
    sum e = 1.231163638091923e-09
    sum de = 9.053410387350224e-12
Info: cfl dt = 0.0024266099038586755 cfl multiplier : 0.6280193441444509       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9863e+04 | 11520 |      1 | 3.858e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.93430448704092 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.914544740441581, dt = 0.0024266099038586755 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (2.0%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 292.23 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.526128472222221
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.629217342944406e-27,1.6933783631585385e-27,1.2877143292792917e-18)
    sum a = (-2.2633853306099385e-27,3.7612138582194565e-25,-2.2390137188110838e-14)
    sum e = 1.2311857365360933e-09
    sum de = 9.247885177054155e-12
Info: cfl dt = 0.002907087258100304 cfl multiplier : 0.7520128960963005        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6812e+04 | 11520 |      1 | 4.297e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.331745684351002 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.9169713503454395, dt = 0.002907087258100304 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.8%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 322.46 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.524479166666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.500237664178031e-27,2.6087180189199104e-27,-6.329623473424971e-17)
    sum a = (4.1162546943935642e-25,-5.080412465128876e-25,-2.188107383327712e-14)
    sum e = 1.2312128642461932e-09
    sum de = 9.47191896148106e-12
Info: cfl dt = 0.0032287995048872207 cfl multiplier : 0.8346752640642002       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9888e+04 | 11520 |      1 | 3.854e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.151963170061332 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.9198784376035398, dt = 0.0032287995048872207 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (1.8%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1.18 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 333.79 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.52109375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.582878461011217e-27,-2.7009454236292004e-28,-1.3320588929739287e-16)
    sum a = (2.0130815411071922e-25,-4.049684537610919e-26,-2.1304378800502383e-14)
    sum e = 1.2312437782190085e-09
    sum de = 9.709527580190469e-12
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011367395199289579
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.912262049258681e-27,4.805533192747204e-28,-1.3227487297882613e-16)
    sum a = (2.250515100298627e-25,8.74842810385263e-26,-2.130903388176667e-14)
    sum e = 1.2312441317923595e-09
    sum de = 9.704173502129851e-12
Info: cfl dt = 0.0017212175706019725 cfl multiplier : 0.4448917546880667       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0970e+04 | 11520 |      1 | 5.494e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.15823188822321 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.923107237108427, dt = 0.0017212175706019725 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.8%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 301.14 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.517621527777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.444884073513859e-27,8.654120381743882e-28,-1.68959871670858e-16)
    sum a = (-4.136225741428358e-26,-2.7145090930736644e-25,-2.0996032228400564e-14)
    sum e = 1.2312608344790423e-09
    sum de = 9.827291584471928e-12
Info: cfl dt = 0.00243675138619076 cfl multiplier : 0.6299278364587111         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9917e+04 | 11520 |      1 | 3.851e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.091840661009176 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.924828454679029, dt = 0.00243675138619076 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.8%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 279.87 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.516493055555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.832516548946137e-27,-1.636516354240029e-28,-2.1985261033538166e-16)
    sum a = (-1.2173462670319726e-25,1.4510075173390575e-25,-2.054821876175941e-14)
    sum e = 1.231284895332193e-09
    sum de = 9.995375775298082e-12
Info: cfl dt = 0.0029134405994461553 cfl multiplier : 0.7532852243058074       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9829e+04 | 11520 |      1 | 3.862e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.714062426660362 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.9272652060652198, dt = 0.0029134405994461553 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.9%)
   patch tree reduce : 1.90 us    (0.7%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.63 us    (0.6%)
   LB compute        : 266.80 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.512586805555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.261061933234416e-27,7.568888138360134e-28,-2.791730200793977e-16)
    sum a = (-6.466181228820942e-26,3.062671013046899e-25,-2.0005616365207156e-14)
    sum e = 1.2313142278936667e-09
    sum de = 1.0187356520487611e-11
Info: cfl dt = 0.003231030302314393 cfl multiplier : 0.8355234828705381        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8745e+04 | 11520 |      1 | 4.008e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.17084724114184 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.930178646664666, dt = 0.003231030302314393 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.1%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (0.5%)
   LB compute        : 282.67 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.507118055555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.4129251033948256e-27,1.9943309469467472e-27,-3.430213528457128e-16)
    sum a = (-5.7552119543822905e-25,8.916517749728808e-26,-1.9395316373928282e-14)
    sum e = 1.2313474282604593e-09
    sum de = 1.0389057534350983e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010853948173699423
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.18264254119416e-27,1.75561452535898e-27,-3.4203540396352007e-16)
    sum a = (-3.315637608820951e-25,-9.447414750070405e-27,-1.94002461183784e-14)
    sum e = 1.2313477260884264e-09
    sum de = 1.0383694632075802e-11
Info: cfl dt = 0.0017214599058120116 cfl multiplier : 0.44517449429017936      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.0986e+04 | 11520 |      1 | 5.489e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.189904368331003 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.9334096769669804, dt = 0.0017214599058120116 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.8%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 323.96 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501475694444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.432627348695657e-27,1.4544885817874834e-27,-3.754401138962097e-16)
    sum a = (1.1361306757571454e-25,-2.7182814019580143e-26,-1.9070624723761736e-14)
    sum e = 1.2313656003050999e-09
    sum de = 1.0487640164198178e-11
Info: cfl dt = 0.0024365945131033994 cfl multiplier : 0.6301163295267863       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6909e+04 | 11520 |      1 | 4.281e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.475691405546158 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.9351311368727924, dt = 0.0024365945131033994 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.6%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 338.60 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498784722222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.724972713313475e-27,1.3938126576366349e-27,-4.2162377845170935e-16)
    sum a = (1.9203271226567064e-25,8.551491390037304e-26,-1.8600821343390178e-14)
    sum e = 1.2313912516295148e-09
    sum de = 1.062858398061554e-11
Info: cfl dt = 0.002913481754203452 cfl multiplier : 0.7534108863511909        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9867e+04 | 11520 |      1 | 3.857e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.741549951310944 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.9375677313858957, dt = 0.002913481754203452 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (2.0%)
   patch tree reduce : 1.72 us    (0.6%)
   gen split merge   : 1.10 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 286.68 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494097222222221
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.020265194247191e-27,1.7996479103141673e-27,-4.752445718796453e-16)
    sum a = (2.4235975079335048e-25,4.161744301528372e-26,-1.803407173137241e-14)
    sum e = 1.2314223960215934e-09
    sum de = 1.0788190007376778e-11
Info: cfl dt = 0.003231760098518728 cfl multiplier : 0.8356072575674606        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9946e+04 | 11520 |      1 | 3.847e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.26466778603576 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.940481213140099, dt = 0.003231760098518728 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.9%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.5%)
   LB compute        : 289.59 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.487934027777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.288860268554534e-27,1.824091639757795e-27,-5.327007579880213e-16)
    sum a = (1.8328983167488324e-26,2.814031477463719e-25,-1.7399628338126166e-14)
    sum e = 1.2314574982414968e-09
    sum de = 1.0954114156120663e-11
Info: cfl dt = 0.0034443041467094723 cfl multiplier : 0.8904048383783071       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9309e+04 | 11520 |      1 | 3.930e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.6002781060042 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 1.9437129732386178, dt = 0.0034443041467094723 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.9%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.55 us    (0.5%)
   LB compute        : 292.31 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.483767361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.4883973791191815e-27,3.2064625516974128e-27,-5.916051856030188e-16)
    sum a = (6.075636309029422e-26,-4.718659138145852e-25,-1.671759550978082e-14)
    sum e = 1.2314954991167553e-09
    sum de = 1.1118312885004921e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01090887456310798
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.440116679473435e-27,1.9045305792034914e-27,-5.904306213536191e-16)
    sum a = (-1.411287323792079e-26,-2.1815040377672846e-25,-1.6723468330968812e-14)
    sum e = 1.2314957523453648e-09
    sum de = 1.1112277541245207e-11
Info: cfl dt = 0.001792722072610962 cfl multiplier : 0.46346827945943564       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.9818e+04 | 11520 |      1 | 5.813e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.331007425080976 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.9471572773853272, dt = 0.001792722072610962 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (1.9%)
   patch tree reduce : 2.24 us    (0.7%)
   gen split merge   : 1.41 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 2.17 us    (0.7%)
   LB compute        : 300.66 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (64.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.4788194444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.592413249092065e-27,1.987743275181798e-27,-6.204212660521075e-16)
    sum a = (8.031689415826149e-25,1.4279853381183927e-25,-1.6365052621821775e-14)
    sum e = 1.2315156709512507e-09
    sum de = 1.1194122045002665e-11
Info: cfl dt = 0.0024844600155883314 cfl multiplier : 0.6423121863062904       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9906e+04 | 11520 |      1 | 3.852e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.753849386981674 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.9489499994579382, dt = 0.0024844600155883314 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (1.8%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 329.74 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.475954861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.857836027504966e-27,2.661939472389369e-27,-6.607583150677306e-16)
    sum a = (-6.415144108620913e-26,-3.937070022386944e-26,-1.586704126957437e-14)
    sum e = 1.2315435628329135e-09
    sum de = 1.1301040764914489e-11
Info: cfl dt = 0.0029459042313040736 cfl multiplier : 0.7615414575375269       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9818e+04 | 11520 |      1 | 3.863e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.150871646773258 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.9514344594735267, dt = 0.0029459042313040736 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.9%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 1.06 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.66 us    (0.6%)
   LB compute        : 272.04 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.473350694444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.098225276931598e-27,2.3077654351317017e-27,-7.068824544355693e-16)
    sum a = (-3.949829302436951e-26,3.650041696392439e-25,-1.5274360611543015e-14)
    sum e = 1.2315769934142757e-09
    sum de = 1.1418833080824208e-11
Info: cfl dt = 0.0032542496046167046 cfl multiplier : 0.8410276383583511       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9638e+04 | 11520 |      1 | 3.887e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.284746623538332 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.9543803637048307, dt = 0.0032542496046167046 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (2.1%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (0.5%)
   LB compute        : 261.80 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.468923611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.1779707772441415e-27,4.091810964949937e-27,-7.557160461881294e-16)
    sum a = (-1.931311198525843e-25,-1.7762027332222795e-25,-1.461747096366231e-14)
    sum e = 1.2316143311669623e-09
    sum de = 1.153789711008415e-11
Info: cfl dt = 0.0034609225102659362 cfl multiplier : 0.894018425572234        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9944e+04 | 11520 |      1 | 3.847e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.45126862280614 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.9576346133094473, dt = 0.0034609225102659362 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.9%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 271.34 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.463020833333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.093310433005514e-27,2.6010901884552323e-27,-8.052371390499076e-16)
    sum a = (5.21993241871917e-25,1.7024762845855e-25,-1.3917154684785361e-14)
    sum e = 1.2316544599907664e-09
    sum de = 1.1652045166197493e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011747525802098669
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.900248404416544e-27,3.221891572410057e-27,-8.040252688635664e-16)
    sum a = (1.6175993346876272e-25,-1.0873819046965209e-26,-1.392321403584102e-14)
    sum e = 1.231654629513697e-09
    sum de = 1.1646077342195367e-11
Info: cfl dt = 0.00179874117491043 cfl multiplier : 0.46467280852407794        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.1044e+04 | 11520 |      1 | 5.474e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.759589153798704 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.9610955358197133, dt = 0.00179874117491043 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (2.1%)
   patch tree reduce : 1.98 us    (0.7%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 271.53 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.459635416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.160288079348752e-27,2.8562757894553727e-27,-8.290800127088746e-16)
    sum a = (3.3999598074123016e-25,9.087103776484337e-26,-1.3557441000823108e-14)
    sum e = 1.2316755748045383e-09
    sum de = 1.1701861907992558e-11
Info: cfl dt = 0.002488381131938748 cfl multiplier : 0.6431152056827186        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9954e+04 | 11520 |      1 | 3.846e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.837531014186265 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.9628942769946238, dt = 0.002488381131938748 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.0%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.5%)
   LB compute        : 295.29 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.45703125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.1974478429664293e-27,3.207155990830565e-27,-8.624871275836401e-16)
    sum a = (4.2362196644289565e-26,-2.5368222495946536e-25,-1.3052058071751527e-14)
    sum e = 1.231704750527018e-09
    sum de = 1.177265579916597e-11
Info: cfl dt = 0.0029469540450412775 cfl multiplier : 0.7620768037884792       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9849e+04 | 11520 |      1 | 3.859e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.211082240356674 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.9653826581265625, dt = 0.0029469540450412775 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.8%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 294.61 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (57.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.455034722222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.482451326692129e-27,1.991383830630849e-27,-9.003221502414626e-16)
    sum a = (-7.1222855990445625e-25,1.605894082120012e-25,-1.2454201044947612e-14)
    sum e = 1.2317395379115246e-09
    sum de = 1.1847735674207952e-11
Info: cfl dt = 0.0032515803765602058 cfl multiplier : 0.8413845358589862       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9714e+04 | 11520 |      1 | 3.877e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.364381127476918 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.9683296121716038, dt = 0.0032515803765602058 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.9%)
   patch tree reduce : 1.74 us    (0.6%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 285.99 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (71.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.450086805555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.877529322607036e-27,3.149427182995615e-27,-9.399370573733925e-16)
    sum a = (-8.334583629187185e-26,-3.367007579804892e-25,-1.1795877778919912e-14)
    sum e = 1.231778176896637e-09
    sum de = 1.1919840529681075e-11
Info: cfl dt = 0.003453834533097119 cfl multiplier : 0.8942563572393242        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9795e+04 | 11520 |      1 | 3.866e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.27516621404335 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.971581192548164, dt = 0.003453834533097119 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (1.8%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.56 us    (0.5%)
   LB compute        : 304.23 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.445833333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.0956766999775314e-27,1.1979161025210382e-27,-9.796077718872832e-16)
    sum a = (2.6743450984814685e-25,1.858305926587542e-25,-1.1098846118783162e-14)
    sum e = 1.2318194665575809e-09
    sum de = 1.1984373250093896e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010894509617576029
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.5343377216905385e-27,2.076503484225325e-27,-9.784040558786697e-16)
    sum a = (1.5042636427651737e-25,-2.0733275329954863e-25,-1.1104864698796296e-14)
    sum e = 1.231819550938351e-09
    sum de = 1.1978617451483688e-11
Info: cfl dt = 0.0017942571899888684 cfl multiplier : 0.46475211907977476      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.1039e+04 | 11520 |      1 | 5.476e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.708016874754037 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.9750350270812613, dt = 0.0017942571899888684 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.9%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.54 us    (0.5%)
   LB compute        : 284.31 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.441145833333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.4206137038535195e-27,1.0907797564489685e-27,-9.983394327972843e-16)
    sum a = (-2.3483732307691153e-25,4.985439041452302e-25,-1.0742526062087881e-14)
    sum e = 1.2318410408163992e-09
    sum de = 1.2008743692728117e-11
Info: cfl dt = 0.0024825600775454167 cfl multiplier : 0.6431680793865165       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9927e+04 | 11520 |      1 | 3.849e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.78046110910609 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.9768292842712503, dt = 0.0024825600775454167 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (2.0%)
   patch tree reduce : 1.57 us    (0.5%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 316.66 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.438368055555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.313936667137298e-27,2.8477811600742537e-27,-1.0246833347795604e-15)
    sum a = (7.702167139752055e-26,2.2471865924594946e-25,-1.0243553297288912e-14)
    sum e = 1.2318708868419308e-09
    sum de = 1.2044299513254926e-11
Info: cfl dt = 0.002941134813365612 cfl multiplier : 0.7621120529243445        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9812e+04 | 11520 |      1 | 3.864e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.128081983760545 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.9793118443487956, dt = 0.002941134813365612 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.0%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.5%)
   LB compute        : 295.32 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.435850694444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.7792950954766786e-27,3.165549642841412e-27,-1.0541916410619572e-15)
    sum a = (-6.750213897760228e-25,-4.2937751124806185e-26,-9.65563212590195e-15)
    sum e = 1.2319063603512524e-09
    sum de = 1.2078024596857826e-11
Info: cfl dt = 0.003246935339930234 cfl multiplier : 0.8414080352828964        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9888e+04 | 11520 |      1 | 3.854e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.470100745046285 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.9822529791621613, dt = 0.003246935339930234 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.9%)
   patch tree reduce : 2.23 us    (0.7%)
   gen split merge   : 1.57 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 284.65 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.431510416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.029270952779414e-27,2.664193149572115e-27,-1.0846782765286699e-15)
    sum a = (3.569491806685438e-25,2.3033274246795253e-26,-9.011059146157204e-15)
    sum e = 1.231945630560566e-09
    sum de = 1.2104989434847919e-11
Info: cfl dt = 0.003451360174264113 cfl multiplier : 0.894272023521931         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6874e+04 | 11520 |      1 | 4.287e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.267908059291216 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.9854999145020915, dt = 0.003451360174264113 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.8%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 288.65 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.4275173611111125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.164327174159635e-27,2.847954519857542e-27,-1.1147322438000714e-15)
    sum a = (4.59555982322861e-25,1.1161596287223519e-26,-8.33165080263561e-15)
    sum e = 1.2319874558678081e-09
    sum de = 1.2122148904285292e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011187655982122832
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.001542337652072e-27,2.7751434108765235e-27,-1.1135598023502051e-15)
    sum a = (5.1867028154585e-25,-2.3204137649204043e-25,-8.33751300999617e-15)
    sum e = 1.2319874600052719e-09
    sum de = 1.211666101702141e-11
Info: cfl dt = 0.0017945203323345602 cfl multiplier : 0.464757341173977        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.9187e+04 | 11520 |      1 | 6.004e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.693764083505318 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.9889512746763556, dt = 0.0017945203323345602 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.8%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 293.96 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.424479166666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.0267402762228685e-27,2.0026522165445777e-27,-1.1285317552625255e-15)
    sum a = (2.2789183671925554e-25,3.685767680532458e-26,-7.985441352872577e-15)
    sum e = 1.2320092008318134e-09
    sum de = 1.2122348966425652e-11
Info: cfl dt = 0.0024840290602258174 cfl multiplier : 0.6431715607826513       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9952e+04 | 11520 |      1 | 3.846e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.79675898765903 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.9907457950086902, dt = 0.0024840290602258174 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.86 us    (2.1%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.56 us    (0.5%)
   LB compute        : 301.60 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (62.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.422482638888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.61865134636259e-27,2.363934004917059e-27,-1.1480519237683622e-15)
    sum a = (2.0330525881419857e-25,-9.290974881631188e-26,-7.501969574311871e-15)
    sum e = 1.2320393243774668e-09
    sum de = 1.2124390446373465e-11
Info: cfl dt = 0.0029447228626584216 cfl multiplier : 0.7621143738551007       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9956e+04 | 11520 |      1 | 3.846e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.253526897887244 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.993229824068916, dt = 0.0029447228626584216 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (2.2%)
   patch tree reduce : 1.92 us    (0.7%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.5%)
   LB compute        : 265.09 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.419965277777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.0704877116054956e-27,1.916665764033661e-27,-1.1695426661146279e-15)
    sum a = (-4.896013130840949e-25,-4.625960194826018e-25,-6.934286458757459e-15)
    sum e = 1.2320750350902014e-09
    sum de = 1.2118826264600413e-11
Info: cfl dt = 0.0032532499478884476 cfl multiplier : 0.841409582570067        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0009e+04 | 11520 |      1 | 3.839e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.615458303296286 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.9961745469315744, dt = 0.0032532499478884476 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (2.0%)
   patch tree reduce : 1.99 us    (0.7%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.5%)
   LB compute        : 282.17 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.418489583333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.758257791704797e-27,-1.345271918315956e-28,-1.1912657984514614e-15)
    sum a = (2.964147181008584e-25,-2.032830687619377e-25,-6.314334782682243e-15)
    sum e = 1.2321144564694308e-09
    sum de = 1.21029274416844e-11
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010096540278899963
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.446270951780164e-27,2.3160867047295323e-28,-1.1902573695719215e-15)
    sum a = (-1.61943001399915e-25,-3.4620919537427703e-25,-6.319376927447543e-15)
    sum e = 1.2321144088459608e-09
    sum de = 1.2098259036325286e-11
Info: cfl dt = 0.0017303582021704253 cfl multiplier : 0.44713652752335564      [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.1083e+04 | 11520 |      1 | 5.464e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.434246074395578 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.9994277968794627, dt = 0.0005722031205372957 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.8%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 303.36 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.413628472222221
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.329018968283366e-27,-1.2897967876637516e-28,-1.193881538448279e-15)
    sum a = (-7.371535361064916e-26,-1.9815716668967402e-26,-6.211079961891692e-15)
    sum e = 1.2321213244805884e-09
    sum de = 1.2094514246834164e-11
Info: cfl dt = 0.0024439069174496423 cfl multiplier : 0.6314243516822371       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0069e+04 | 11520 |      1 | 3.831e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.376701064409793 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 958                                                     [SPH][rank=0]
Info: time since start : 454.292382038 (s)                                            [SPH][rank=0]
epsilon_target = [1.42579258e-10 4.37794181e-05 5.10189950e-04 ... 6.17914753e-04
 1.80326981e-04 1.25666420e-06] 0
s = [5.42017265e-09 6.84176556e-06 2.89104437e-05 ... 3.45348511e-05
 1.52552730e-05 9.32528382e-07] False epsilon_target = [1.42579258e-10 4.37794181e-05 5.10189950e-04 ... 6.17914753e-04
 1.80326981e-04 1.25666420e-06] mrn_weight = 0.06498813249567935 mask = [2.19392761e-07 6.73652502e-02 7.85050947e-01 ... 9.50811678e-01
 2.77476785e-01 1.93368259e-03], rho = [2.06048706e-07 1.06921832e-06 1.63824034e-06 ... 1.93013022e-06
 1.29056314e-06 6.91998053e-07]
epsilon_target = [2.25972896e-10 6.93857017e-05 8.08596578e-04 ... 9.79328885e-04
 2.85799004e-04 1.99167854e-06] 1
s = [6.82359309e-09 8.61327252e-06 3.63960923e-05 ... 4.34768016e-05
 1.92052509e-05 1.17398368e-06] False epsilon_target = [2.25972896e-10 6.93857017e-05 8.08596578e-04 ... 9.79328885e-04
 2.85799004e-04 1.99167854e-06] mrn_weight = 0.10299924878316286 mask = [2.19392761e-07 6.73652502e-02 7.85050947e-01 ... 9.50811678e-01
 2.77476785e-01 1.93368259e-03], rho = [2.06048706e-07 1.06921832e-06 1.63824034e-06 ... 1.93013022e-06
 1.29056314e-06 6.91998053e-07]
epsilon_target = [3.58142904e-10 1.09968926e-04 1.28153921e-03 ... 1.55213168e-03
 4.52960896e-04 3.15659776e-06] 2
s = [8.59039474e-09 1.08434677e-05 4.58199655e-05 ... 5.47340504e-05
 2.41779784e-05 1.47795788e-06] False epsilon_target = [3.58142904e-10 1.09968926e-04 1.28153921e-03 ... 1.55213168e-03
 4.52960896e-04 3.15659776e-06] mrn_weight = 0.16324280822504375 mask = [2.19392761e-07 6.73652502e-02 7.85050947e-01 ... 9.50811678e-01
 2.77476785e-01 1.93368259e-03], rho = [2.06048706e-07 1.06921832e-06 1.63824034e-06 ... 1.93013022e-06
 1.29056314e-06 6.91998053e-07]
epsilon_target = [5.67618251e-10 1.74289003e-04 2.03110277e-03 ... 2.45996294e-03
 7.17894641e-04 5.00287031e-06] 3
s = [1.08146662e-08 1.36511170e-05 5.76839189e-05 ... 6.89060869e-05
 3.04382714e-05 1.86063874e-06] False epsilon_target = [5.67618251e-10 1.74289003e-04 2.03110277e-03 ... 2.45996294e-03
 7.17894641e-04 5.00287031e-06] mrn_weight = 0.2587224154741067 mask = [2.19392761e-07 6.73652502e-02 7.85050947e-01 ... 9.50811678e-01
 2.77476785e-01 1.93368259e-03], rho = [2.06048706e-07 1.06921832e-06 1.63824034e-06 ... 1.93013022e-06
 1.29056314e-06 6.91998053e-07]
epsilon_target = [8.99614302e-10 2.76229454e-04 3.21908096e-03 ... 3.89877852e-03
 1.13778633e-03 7.92901509e-06] 4
s = [1.36148581e-08 1.71857381e-05 7.26197514e-05 ... 8.67476238e-05
 3.83195133e-05 2.34240539e-06] False epsilon_target = [8.99614302e-10 2.76229454e-04 3.21908096e-03 ... 3.89877852e-03
 1.13778633e-03 7.92901509e-06] mrn_weight = 0.4100473950220074 mask = [2.19392761e-07 6.73652502e-02 7.85050947e-01 ... 9.50811678e-01
 2.77476785e-01 1.93368259e-03], rho = [2.06048706e-07 1.06921832e-06 1.63824034e-06 ... 1.93013022e-06
 1.29056314e-06 6.91998053e-07]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[5.42017265e-09 6.82359309e-09 8.59039474e-09 ... 1.47795788e-06
 1.86063874e-06 2.34240539e-06]
(11520, 3)
[[5.42017265e-09 6.82359309e-09 8.59039474e-09 1.08146662e-08
  1.36148581e-08]
 [6.84176556e-06 8.61327252e-06 1.08434677e-05 1.36511170e-05
  1.71857381e-05]
 [2.89104437e-05 3.63960923e-05 4.58199655e-05 5.76839189e-05
  7.26197514e-05]
 ...
 [3.45348511e-05 4.34768016e-05 5.47340504e-05 6.89060869e-05
  8.67476238e-05]
 [1.52552730e-05 1.92052509e-05 2.41779784e-05 3.04382714e-05
  3.83195133e-05]
 [9.32528382e-07 1.17398368e-06 1.47795788e-06 1.86063874e-06
  2.34240539e-06]]
compute original rho
Info: Dumping state to _to_trash/dusty_settle/dump/0000020.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.91 us   (73.0%)
Info: dump to _to_trash/dusty_settle/dump/0000020.sham                      [Shamrock Dump][rank=0]
              - took 1.05 ms, bandwidth = 2.82 GB/s
Info: evolve_until (target_time = 2.10s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 2, dt = 0 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.76 us    (1.1%)
   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.22 us    (0.3%)
   LB compute        : 336.60 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (64.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.413454861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.247193150571365e-27,-2.4963808793491966e-29,-1.193850554517317e-15)
    sum a = (2.423153706888287e-25,-2.1914895612846816e-25,-6.211234881816021e-15)
    sum e = 1.2321213227401451e-09
    sum de = 1.2094370946387844e-11
Info: cfl dt = 0.0011677716500177492 cfl multiplier : 0.7542829011214914       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0815e+04 | 11520 |      1 | 3.738e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr)                                             [sph::Model][rank=0]
---------------- t = 2, dt = 0.0011677716500177492 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.7%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 303.48 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.413454861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.902553901394545e-27,-3.439458100436671e-28,-1.2011038585234323e-15)
    sum a = (-9.319821949570335e-27,1.3114320886181113e-26,-5.990725606114307e-15)
    sum e = 1.23213545166932e-09
    sum de = 1.2465930183094861e-11
Info: cfl dt = 0.0012949523032251087 cfl multiplier : 0.836188600747661        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9896e+04 | 11520 |      1 | 3.853e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.90992778654927 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.001167771650018, dt = 0.0012949523032251087 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.9%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 301.18 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.38 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.4131076388888895
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.125841302269667e-27,-1.8237449201912187e-28,-1.2087328102053846e-15)
    sum a = (3.2357534206817763e-25,1.1066179062501727e-25,-5.747985556996151e-15)
    sum e = 1.2321518125359959e-09
    sum de = 1.2872298449407668e-11
Info: cfl dt = 0.001379970293652891 cfl multiplier : 0.8907924004984406        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9862e+04 | 11520 |      1 | 3.858e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.084485139758241 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.002462723953243, dt = 0.001379970293652891 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.8%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 312.87 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 us    (63.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.412326388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.4206137038535195e-27,1.192715309022394e-28,-1.2165076911295026e-15)
    sum a = (6.362331784240015e-25,5.579244839953498e-25,-5.490801055255264e-15)
    sum e = 1.2321698397971724e-09
    sum de = 1.3300383646670736e-11
Info: cfl dt = 0.0014366047259826893 cfl multiplier : 0.927194933665627        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9874e+04 | 11520 |      1 | 3.856e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.882741897208872 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.003842694246896, dt = 0.0014366047259826893 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.79 us    (2.3%)
   patch tree reduce : 1.71 us    (0.6%)
   gen split merge   : 1.03 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 271.66 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.4117187499999995
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.387389395456213e-27,1.2232266308811064e-27,-1.2242183483884634e-15)
    sum a = (1.8701776045471138e-25,-4.799930204551331e-25,-5.2247259458680435e-15)
    sum e = 1.2321892430176337e-09
    sum de = 1.3740610538789054e-11
Info: cfl dt = 0.0014742208380855322 cfl multiplier : 0.9514632891104181       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9988e+04 | 11520 |      1 | 3.842e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.46279277851857 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.0052792989728787, dt = 0.0014742208380855322 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.6%)
   patch tree reduce : 1.91 us    (0.5%)
   gen split merge   : 1.18 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 340.93 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.410329861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.407499130317637e-27,-2.815362880599372e-28,-1.2317296258720298e-15)
    sum a = (-5.299872081988997e-25,6.923296305395105e-26,-4.953485456544229e-15)
    sum e = 1.2322098161590822e-09
    sum de = 1.4186609914025427e-11
Info: cfl dt = 0.0014993097712780957 cfl multiplier : 0.9676421927402789       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9872e+04 | 11520 |      1 | 3.856e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.761856428846599 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.0067535198109643, dt = 0.0014993097712780957 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.01 us    (2.2%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1.38 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.5%)
   LB compute        : 294.09 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.4098090277777775
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.726420361573796e-27,1.8029417461966422e-28,-1.2389565008274815e-15)
    sum a = (1.568392893799122e-25,1.4907277108860359e-25,-4.679543186002255e-15)
    sum e = 1.2322314151083484e-09
    sum de = 1.4634211231962323e-11
Info: cfl dt = 0.0015160507795354962 cfl multiplier : 0.9784281284935193       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9873e+04 | 11520 |      1 | 3.856e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.99654510122803 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.008252829582242, dt = 0.0015160507795354962 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.8%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 300.35 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.409288194444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.9428341411114096e-27,5.561381847883488e-28,-1.2458455637611152e-15)
    sum a = (8.667434413100411e-26,2.1545431242703135e-25,-4.404552103287409e-15)
    sum e = 1.2322539368305402e-09
    sum de = 1.5080652419065847e-11
Info: cfl dt = 0.0015272307680423635 cfl multiplier : 0.985618752329013        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9942e+04 | 11520 |      1 | 3.847e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.18563572039212 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.0097688803617775, dt = 0.0015272307680423635 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (2.1%)
   patch tree reduce : 1.67 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.5%)
   LB compute        : 272.95 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.40859375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.824949488475475e-27,8.529301337776422e-28,-1.2523638810300914e-15)
    sum a = (-4.153533982191845e-25,-1.8690681019340696e-25,-4.129626042947282e-15)
    sum e = 1.2322773067764637e-09
    sum de = 1.5524102820805303e-11
Info: cfl dt = 0.0015347084886132532 cfl multiplier : 0.9904125015526754       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9623e+04 | 11520 |      1 | 3.889e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.137988726044401 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.0112961111298198, dt = 0.0015347084886132532 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (2.2%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.5%)
   LB compute        : 272.92 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.407552083333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.912262049258681e-27,2.503315270680722e-28,-1.258491715403601e-15)
    sum a = (5.262148993145498e-25,-1.0976309350845157e-25,-3.855520361273125e-15)
    sum e = 1.2323014702223024e-09
    sum de = 1.5963347264214518e-11
Info: cfl dt = 0.0015397239667607225 cfl multiplier : 0.9936083343684503       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9913e+04 | 11520 |      1 | 3.851e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.346374159615863 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.012830819618433, dt = 0.0015397239667607225 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.9%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 292.05 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (72.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.406510416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.3326077039371614e-27,1.2759280050007006e-28,-1.26421781635029e-15)
    sum a = (3.441677105662759e-26,1.2670519840963477e-25,-3.582752084964817e-15)
    sum e = 1.2323263862441875e-09
    sum de = 1.6397577228345725e-11
Info: cfl dt = 0.0015431047459700217 cfl multiplier : 0.9957388895789668       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9856e+04 | 11520 |      1 | 3.859e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.365663405788133 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.0143705435851937, dt = 0.0015431047459700217 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (2.2%)
   patch tree reduce : 1.68 us    (0.6%)
   gen split merge   : 1.04 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.5%)
   LB compute        : 271.93 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.34 us    (63.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.405121527777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.655750339986252e-27,5.32561254261162e-28,-1.2695363841710768e-15)
    sum a = (2.17861933097337e-25,-2.257837817544718e-25,-3.3116795993492452e-15)
    sum e = 1.2323520235200699e-09
    sum de = 1.682625264916149e-11
Info: cfl dt = 0.00154540335080056 cfl multiplier : 0.9971592597193112         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6657e+04 | 11520 |      1 | 4.321e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.854747880385776 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.0159136483311637, dt = 0.00154540335080056 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (2.2%)
   patch tree reduce : 1.87 us    (0.7%)
   gen split merge   : 1.08 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 256.87 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (62.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.404340277777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.220270564366448e-27,-1.5255660929356203e-29,-1.2744451183010655e-15)
    sum a = (-5.932066670901518e-25,9.552817498309592e-26,-3.0425555448731495e-15)
    sum e = 1.2323783574032586e-09
    sum de = 1.7249011052641593e-11
Info: cfl dt = 0.001546988897050738 cfl multiplier : 0.9981061731462075        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4745e+04 | 11520 |      1 | 4.656e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.950140766894611 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.017459051681964, dt = 0.001546988897050738 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (1.5%)
   patch tree reduce : 2.15 us    (0.5%)
   gen split merge   : 1.00 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 402.59 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.403038194444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.709777822378135e-27,3.203688795164802e-28,-1.2789439653395176e-15)
    sum a = (-3.9837800823961002e-25,1.6283060349035026e-25,-2.7755619725469377e-15)
    sum e = 1.2324053678856473e-09
    sum de = 1.76656077731152e-11
Info: cfl dt = 0.0015481081359489026 cfl multiplier : 0.9987374487641384       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8557e+04 | 11520 |      1 | 4.034e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.805531347802278 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.019006040579015, dt = 0.0015481081359489026 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (2.0%)
   patch tree reduce : 1.68 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.5%)
   LB compute        : 272.98 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.402430555555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.227083415709941e-27,6.72635959157978e-28,-1.2830343173644947e-15)
    sum a = (-2.371339934859128e-25,7.86637352648258e-26,-2.510833599094957e-15)
    sum e = 1.2324330381816533e-09
    sum de = 1.8075875672175406e-11
Info: cfl dt = 0.001548926129429418 cfl multiplier : 0.9991582991760923        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9905e+04 | 11520 |      1 | 3.852e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.467506801485845 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.0205541487149636, dt = 0.001548926129429418 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.2%)
   patch tree reduce : 1.76 us    (0.6%)
   gen split merge   : 1.41 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.5%)
   LB compute        : 276.24 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.40217013888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.472560868845945e-27,6.393508807666553e-28,-1.2867184990583289e-15)
    sum a = (5.615636525661344e-25,2.5438121160568317e-25,-2.248473383135926e-15)
    sum e = 1.2324613537421741e-09
    sum de = 1.847969930551552e-11
Info: cfl dt = 0.0015495533229465985 cfl multiplier : 0.9994388661173949       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9883e+04 | 11520 |      1 | 3.855e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.464494152085189 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.022103074844393, dt = 0.0015495533229465985 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (2.3%)
   patch tree reduce : 1.92 us    (0.7%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.5%)
   LB compute        : 266.67 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.400954861111112
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.0066305413614445e-27,1.2093578482180554e-27,-1.2899994401639229e-15)
    sum a = (1.170192405977599e-25,-1.1212633407423547e-25,-1.988563003562073e-15)
    sum e = 1.232490301570346e-09
    sum de = 1.8876997670277416e-11
Info: cfl dt = 0.0015500635986080119 cfl multiplier : 0.9996259107449298       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9909e+04 | 11520 |      1 | 3.852e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.482897711235054 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.0236526281673397, dt = 0.0015500635986080119 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (2.0%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 941.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 272.74 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.40078125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.152252759323481e-27,7.780387073971663e-28,-1.292880466792879e-15)
    sum a = (-3.362458619091411e-25,1.52933840181997e-25,-1.7311697294564704e-15)
    sum e = 1.2325198697457334e-09
    sum de = 1.9267712666770054e-11
Info: cfl dt = 0.0015505062673795665 cfl multiplier : 0.9997506071632865       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6384e+04 | 11520 |      1 | 4.366e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.78024690183189 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.025202691765948, dt = 0.0015505062673795665 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (2.2%)
   patch tree reduce : 1.98 us    (0.7%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 262.62 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.4000868055555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.006569771367428e-27,1.1746858915604275e-27,-1.2953651683359108e-15)
    sum a = (-2.7266026715558448e-25,-7.66832731005421e-26,-1.4763509373936908e-15)
    sum e = 1.2325500470920574e-09
    sum de = 1.9651801178011627e-11
Info: cfl dt = 0.0015509140452285041 cfl multiplier : 0.9998337381088577       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9858e+04 | 11520 |      1 | 3.858e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.467183175260223 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.0267531980333273, dt = 0.0015509140452285041 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (2.0%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 294.39 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.84 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.399913194444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.3796400250035024e-27,8.612514033754728e-28,-1.2974573126737889e-15)
    sum a = (9.79635332187277e-26,-3.6740624279648434e-25,-1.2241571992991932e-15)
    sum e = 1.2325808229424974e-09
    sum de = 2.0029230763608644e-11
Info: cfl dt = 0.0015510846623413045 cfl multiplier : 0.9998891587392386       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9892e+04 | 11520 |      1 | 3.854e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.487393033659426 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.0283041120785557, dt = 0.0015510846623413045 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.8%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 308.07 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.399045138888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.90394077966085e-27,9.153396557613721e-29,-1.2991605187249532e-15)
    sum a = (-7.818110162815161e-26,-1.7339306836652998e-25,-9.746703646910859e-16)
    sum e = 1.232612182493327e-09
    sum de = 2.0399921646852904e-11
Info: cfl dt = 0.001551165323384493 cfl multiplier : 0.9999261058261592        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9248e+04 | 11520 |      1 | 3.939e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.176998159535028 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.029855196740897, dt = 0.001551165323384493 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.7%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 313.62 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.398263888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.207667119981669e-27,-4.7153861054373714e-29,-1.3004789059954728e-15)
    sum a = (-3.3711682146038074e-25,-1.9699218894597773e-26,-7.279457588081706e-16)
    sum e = 1.232644113476842e-09
    sum de = 2.076383534134819e-11
Info: cfl dt = 0.0015512362001974308 cfl multiplier : 0.9999507372174395       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9854e+04 | 11520 |      1 | 3.859e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.471482618605396 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.0314063620642813, dt = 0.0015512362001974308 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.9%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 301.67 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.398003472222221
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.917748792329886e-27,2.3576930527186857e-29,-1.3014167664802414e-15)
    sum a = (1.6874009178307634e-25,-2.2411952783490564e-25,-4.840245023050578e-16)
    sum e = 1.2326766051890985e-09
    sum de = 2.1120954221121332e-11
Info: cfl dt = 0.0015511079703338024 cfl multiplier : 0.9999671581449597       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9876e+04 | 11520 |      1 | 3.856e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.482602161230496 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.0329575982644785, dt = 0.0015511079703338024 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.9%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 282.59 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.397135416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.247886589704517e-27,-4.57669827880686e-28,-1.3019783510027736e-15)
    sum a = (4.16787430346544e-25,6.24594496013169e-25,-2.4297622309755336e-16)
    sum e = 1.2327096429173285e-09
    sum de = 2.1471218390949413e-11
Info: cfl dt = 0.0015507313152857154 cfl multiplier : 0.9999781054299731       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9445e+04 | 11520 |      1 | 3.912e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.272802883885186 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.034508706234812, dt = 0.0015507313152857154 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.6%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 342.92 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.396875000000001
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.4324021691171134e-27,1.2079709699517502e-27,-1.3021681958873914e-15)
    sum a = (3.0396765713915603e-25,4.323398832248896e-25,-4.875303215067769e-18)
    sum e = 1.2327432105214078e-09
    sum de = 2.1814562947361616e-11
Info: cfl dt = 0.0015503619031253424 cfl multiplier : 0.9999854036199821       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9860e+04 | 11520 |      1 | 3.858e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.47007089740703 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.0360594375500978, dt = 0.0015503619031253424 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.7%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1.20 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.54 us    (0.4%)
   LB compute        : 333.67 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.396875000000001
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.057945037214733e-27,1.7183421719520306e-27,-1.3019911390953417e-15)
    sum a = (-1.5352187656691038e-25,-1.648720882983514e-25,2.302458109009962e-16)
    sum e = 1.2327772970767221e-09
    sum de = 2.2150984715764413e-11
Info: cfl dt = 0.0015500039230839744 cfl multiplier : 0.999990269079988        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9754e+04 | 11520 |      1 | 3.872e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.415638145003545 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.037609799453223, dt = 0.0015500039230839744 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (2.0%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 299.03 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.396614583333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.644594543861795e-27,9.832966908103224e-28,-1.301451995776076e-15)
    sum a = (-2.2267440068141573e-25,2.6364001091153605e-25,4.623560835483766e-16)
    sum e = 1.232811891853261e-09
    sum de = 2.2480481391056694e-11
Info: cfl dt = 0.0015496608016448738 cfl multiplier : 0.999993512719992        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9880e+04 | 11520 |      1 | 3.855e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.472942503306081 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.039159803376307, dt = 0.0015496608016448738 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (1.9%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 309.62 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.396354166666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.0329204584272254e-27,1.7335978328813864e-27,-1.3005556147596179e-15)
    sum a = (1.11837863394844e-26,3.146327510070423e-25,6.914260072029396e-16)
    sum e = 1.2328469842146926e-09
    sum de = 2.2803052799766024e-11
Info: cfl dt = 0.0015493354111249696 cfl multiplier : 0.9999956751466614       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9795e+04 | 11520 |      1 | 3.866e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.428689821619086 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.0407094641779517, dt = 0.0015493354111249696 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (2.0%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 275.71 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3955729166666675
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.8554000403401715e-27,2.260611574077328e-27,-1.299306873621916e-15)
    sum a = (3.589795704504145e-26,1.1736318640780357e-25,9.174275241224682e-16)
    sum e = 1.2328825636139713e-09
    sum de = 2.311870049031034e-11
Info: cfl dt = 0.0015490301666532438 cfl multiplier : 0.9999971167644409       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6421e+04 | 11520 |      1 | 4.360e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.792317057084 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 2.0422587995890766, dt = 0.0015490301666532438 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (2.2%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 285.24 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.395312500000001
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.743062900769458e-27,2.3022179220664813e-27,-1.297710674636359e-15)
    sum a = (3.7983821957564334e-26,2.6700180382905963e-25,1.1403339528106031e-15)
    sum e = 1.2329186195880644e-09
    sum de = 2.3427427442270033e-11
Info: cfl dt = 0.0015487470899219523 cfl multiplier : 0.9999980778429606       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9711e+04 | 11520 |      1 | 3.877e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.382189297430266 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.04380782975573, dt = 0.0015487470899219523 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.9%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 299.90 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.395312500000001
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.679266500519422e-27,2.8167497588656768e-27,-1.2957719413536883e-15)
    sum a = (4.278131125636697e-25,-2.4585468402443934e-25,1.3601199045385776e-15)
    sum e = 1.232955141752668e-09
    sum de = 2.3729238024861205e-11
Info: cfl dt = 0.0015484878481875448 cfl multiplier : 0.9999987185619738       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8563e+04 | 11520 |      1 | 4.033e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.824176921251176 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.045356576845652, dt = 0.0015484878481875448 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.8%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 319.15 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.395312500000001
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.7126123489047616e-27,2.0636748602620025e-27,-1.2934956157827971e-15)
    sum a = (4.431242486236781e-25,2.5979003684427306e-25,1.5767611865550488e-15)
    sum e = 1.2329921197974241e-09
    sum de = 2.4024137880349525e-11
Info: cfl dt = 0.0015482537730430572 cfl multiplier : 0.9999991457079824       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9787e+04 | 11520 |      1 | 3.867e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.41412206125963 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.04690506469384, dt = 0.0015482537730430572 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.9%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 292.48 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.395312500000001
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.023333850551122e-27,2.8264579067298126e-27,-1.2908866561297857e-15)
    sum a = (-1.6220373451398037e-25,-2.739694802389765e-25,1.79023475254512e-15)
    sum e = 1.2330295434807601e-09
    sum de = 2.4312133685484242e-11
Info: cfl dt = 0.0015480458761924318 cfl multiplier : 0.9999994304719882       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9764e+04 | 11520 |      1 | 3.870e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.400550154487567 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.048453318466883, dt = 0.0015480458761924318 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (2.0%)
   patch tree reduce : 1.59 us    (0.6%)
   gen split merge   : 1.06 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.56 us    (0.5%)
   LB compute        : 264.46 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.395572916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.7500580620949995e-27,2.0498060775989513e-27,-1.2879500349759576e-15)
    sum a = (3.818353242791227e-25,3.3014359753739864e-25,2.0005186530178216e-15)
    sum e = 1.233067402623898e-09
    sum de = 2.4593233229987515e-11
Info: cfl dt = 0.0015478648483250252 cfl multiplier : 0.9999996203146587       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9871e+04 | 11520 |      1 | 3.857e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.45050439950796 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.0500013643430752, dt = 0.0015478648483250252 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (2.2%)
   patch tree reduce : 1.80 us    (0.6%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.54 us    (0.5%)
   LB compute        : 277.99 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.395833333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.74873195382271e-27,2.9374081680342215e-27,-1.2846907379122457e-15)
    sum a = (-4.16118955022185e-25,2.6228641772362225e-26,2.2075919299195173e-15)
    sum e = 1.2331056871047654e-09
    sum de = 2.4867445188808523e-11
Info: cfl dt = 0.001547711070740488 cfl multiplier : 0.9999997468764391        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9825e+04 | 11520 |      1 | 3.863e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.426437770596744 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.0515492291914, dt = 0.001547711070740488 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (2.0%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 269.47 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.395833333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.999696150029919e-27,2.8001072196700155e-27,-1.2811137627205974e-15)
    sum a = (-5.816012697577106e-25,2.564504339790104e-25,2.4114345666207228e-15)
    sum e = 1.2331443868510976e-09
    sum de = 2.5134779249384577e-11
Info: cfl dt = 0.0015475846181095098 cfl multiplier : 0.9999998312509595       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9856e+04 | 11520 |      1 | 3.859e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.439936965003792 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.0530969402621406, dt = 0.0015475846181095098 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (1.9%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 309.23 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.395833333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.078687441215294e-27,3.313252178202906e-27,-1.2772241189243376e-15)
    sum a = (-2.1224784987533393e-26,-2.538541978644872e-26,2.612027465362312e-15)
    sum e = 1.233183491833628e-09
    sum de = 2.5395245878666682e-11
Info: cfl dt = 0.0015474852702763305 cfl multiplier : 0.9999998875006396       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6415e+04 | 11520 |      1 | 4.361e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.774902838301712 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.05464452488025, dt = 0.0015474852702763305 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.6%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 335.51 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.395833333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.623791369867218e-27,3.1038335599908346e-27,-1.2730268276540313e-15)
    sum a = (-3.1665204576278256e-26,-7.887454076130418e-26,2.809352381495032e-15)
    sum e = 1.2332229920585774e-09
    sum de = 2.5648856399853313e-11
Info: cfl dt = 0.0015474125271706758 cfl multiplier : 0.9999999250004263       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7849e+04 | 11520 |      1 | 4.137e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.467289146912213 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.0561920101505264, dt = 0.0015474125271706758 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.7%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 330.48 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.395833333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.6515289351933205e-27,2.934634411501611e-27,-1.2685269218843602e-15)
    sum a = (1.079213191707984e-25,4.489158522637682e-25,3.003391902201906e-15)
    sum e = 1.2332628775604667e-09
    sum de = 2.5895622738357198e-11
Info: cfl dt = 0.0015473656297994938 cfl multiplier : 0.9999999500002842       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9003e+04 | 11520 |      1 | 3.972e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.024715316397984 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.057739422677697, dt = 0.0015473656297994938 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (2.1%)
   patch tree reduce : 1.99 us    (0.7%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.62 us    (0.6%)
   LB compute        : 267.10 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.396354166666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.433789047383418e-27,4.071874589871801e-27,-1.2637294468894872e-15)
    sum a = (2.838995286257211e-25,-7.584559862769381e-26,3.1941293658368617e-15)
    sum e = 1.2333031383944813e-09
    sum de = 2.613555743290521e-11
Info: cfl dt = 0.0015473435817402086 cfl multiplier : 0.9999999666668561       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9678e+04 | 11520 |      1 | 3.882e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.351049848502841 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.0592867883074963, dt = 0.0015473435817402086 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.78 us    (2.3%)
   patch tree reduce : 1.80 us    (0.6%)
   gen split merge   : 1.08 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.75 us    (0.6%)
   LB compute        : 273.07 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3968750000000005
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.7902775318178474e-27,3.525444552947588e-27,-1.258639461019462e-15)
    sum a = (2.8527531186589576e-25,2.2567283149316737e-26,3.3815488378526048e-15)
    sum e = 1.2333437646294098e-09
    sum de = 2.6368673692205056e-11
Info: cfl dt = 0.0015473451754135323 cfl multiplier : 0.9999999777779042       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7727e+04 | 11520 |      1 | 4.155e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.407166192293385 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.0608341318892367, dt = 0.0015473451754135323 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (2.0%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.5%)
   LB compute        : 279.11 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.397048611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.368666538861094e-27,3.575372170534572e-27,-1.2532620365809459e-15)
    sum a = (-2.0438147634885134e-25,-2.990109542153816e-25,3.565635122705495e-15)
    sum e = 1.2333847463411636e-09
    sum de = 2.6594985204209594e-11
Info: cfl dt = 0.0015473690254659393 cfl multiplier : 0.9999999851852696       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9020e+04 | 11520 |      1 | 3.970e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.032471626131315 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.0623814770646502, dt = 0.0015473690254659393 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.4%)
   patch tree reduce : 1.91 us    (0.7%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.5%)
   LB compute        : 261.13 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.397048611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.0732006981440894e-27,2.9221525071048653e-27,-1.2476022607230372e-15)
    sum a = (1.2368735130215486e-25,3.066443321931249e-25,3.746373719325616e-15)
    sum e = 1.233426073606513e-09
    sum de = 2.681450639740012e-11
Info: cfl dt = 0.0015474136026673313 cfl multiplier : 0.9999999901235131       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9813e+04 | 11520 |      1 | 3.864e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.416084303301334 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.0639288460901164, dt = 0.0015474136026673313 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (2.0%)
   patch tree reduce : 1.80 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 295.89 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.397743055555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.623852139861234e-27,3.87077724125756e-27,-1.241665236416564e-15)
    sum a = (-1.2104673508310994e-26,-8.914853495809242e-26,3.923750815426176e-15)
    sum e = 1.2334677364983823e-09
    sum de = 2.7027252351926e-11
Info: cfl dt = 0.0015474772683354196 cfl multiplier : 0.9999999934156755       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9793e+04 | 11520 |      1 | 3.867e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.40694859314872 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.0654762596927836, dt = 0.0015474772683354196 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.7%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 331.74 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.398263888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.672392879181913e-27,3.424202439507315e-27,-1.2354560833561978e-15)
    sum a = (-1.0447076604423127e-25,-2.8915857101155005e-25,4.097753270172196e-15)
    sum e = 1.2335097250816627e-09
    sum de = 2.723323875091668e-11
Info: cfl dt = 0.001547558318373625 cfl multiplier : 0.9999999956104503        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9495e+04 | 11520 |      1 | 3.906e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.263183728518408 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.067023736961119, dt = 0.001547558318373625 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.7%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 309.66 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.399131944444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.9067753061874764e-27,2.765435263012388e-27,-1.2289799387758045e-15)
    sum a = (2.0954066349950636e-25,-3.2968870146605056e-25,4.268368622017852e-15)
    sum e = 1.2335520294101242e-09
    sum de = 2.7432481932300896e-11
Info: cfl dt = 0.001547655017686856 cfl multiplier : 0.9999999970736336        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9769e+04 | 11520 |      1 | 3.870e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.396833526480039 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.068571295279493, dt = 0.001547655017686856 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.9%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 1.42 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 277.12 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.399392361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.358264951863806e-27,2.235647765283836e-27,-1.222241958056897e-15)
    sum a = (-2.610437747970129e-25,-3.5697137072080467e-25,4.435585079120023e-15)
    sum e = 1.2335946395244916e-09
    sum de = 2.7624998725080786e-11
Info: cfl dt = 0.0015477656369166728 cfl multiplier : 0.9999999980490891       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8990e+04 | 11520 |      1 | 3.974e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.020606011139957 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.0701189502971795, dt = 0.0015477656369166728 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (2.0%)
   patch tree reduce : 2.13 us    (0.8%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 257.07 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.4
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.164734663720227e-27,1.6836702152944027e-27,-1.2152473151986183e-15)
    sum a = (4.012849050857855e-25,2.5211227876200796e-25,4.599391551435043e-15)
    sum e = 1.233637545451138e-09
    sum de = 2.7810806848515402e-11
Info: cfl dt = 0.0015478884897876849 cfl multiplier : 0.9999999986993927       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5079e+04 | 11520 |      1 | 4.593e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.130148644425493 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.071666715934096, dt = 0.0015478884897876849 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.9%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 296.67 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.400868055555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.9775668677630536e-27,2.574046062262283e-27,-1.2080012029406767e-15)
    sum a = (-2.2916776472425627e-25,1.5171338730764852e-25,4.7597776687277975e-15)
    sum e = 1.2336807372031835e-09
    sum de = 2.7989924674683595e-11
Info: cfl dt = 0.0015480219650171711 cfl multiplier : 0.9999999991329286       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9521e+04 | 11520 |      1 | 3.902e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.279558247272451 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.0732146044238835, dt = 0.0015480219650171711 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.2%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.5%)
   LB compute        : 279.12 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.400868055555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.885278693059748e-27,2.6725144191699457e-27,-1.2005088326488883e-15)
    sum a = (2.3725603877334765e-25,-1.9715861433793432e-26,4.916733791077198e-15)
    sum e = 1.2337242047816049e-09
    sum de = 2.8162371306432652e-11
Info: cfl dt = 0.0015481645649596274 cfl multiplier : 0.9999999994219525       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9889e+04 | 11520 |      1 | 3.854e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.459249174136124 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.0747626263889005, dt = 0.0015481645649596274 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.9%)
   patch tree reduce : 1.97 us    (0.7%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 273.70 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (63.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.401909722222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.129430037923463e-27,2.5546297665340113e-27,-1.1927754338549992e-15)
    sum a = (3.485613409139305e-25,-4.011628597983507e-25,5.070251024409934e-15)
    sum e = 1.2337679381780781e-09
    sum de = 2.8328166589400406e-11
Info: cfl dt = 0.0015483149083496326 cfl multiplier : 0.999999999614635        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6135e+04 | 11520 |      1 | 4.408e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.644062880390443 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.07631079095386, dt = 0.0015483149083496326 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.8%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 1.10 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.55 us    (0.5%)
   LB compute        : 288.17 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.402951388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.4956266702220276e-27,1.6032312758487064e-27,-1.184806253634833e-15)
    sum a = (-4.76265091675305e-25,1.4917817383684278e-25,5.220321233681362e-15)
    sum e = 1.2338119273780358e-09
    sum de = 2.848733117486476e-11
Info: cfl dt = 0.001548471767942294 cfl multiplier : 0.99999999974309          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9751e+04 | 11520 |      1 | 3.872e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.395096401739302 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.07785910586221, dt = 0.001548471767942294 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (1.9%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.67 us    (0.5%)
   LB compute        : 316.56 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (63.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.404253472222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.909549062720087e-27,2.2550640610121077e-27,-1.1766065556131986e-15)
    sum a = (4.983441936748823e-25,2.4067885433458864e-25,5.366937116328397e-15)
    sum e = 1.2338561623651416e-09
    sum de = 2.8639886463144014e-11
Info: cfl dt = 0.0015486340822478638 cfl multiplier : 0.9999999998287267       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9759e+04 | 11520 |      1 | 3.871e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.400383967105215 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.079407577630152, dt = 0.0015486340822478638 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.9%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.5%)
   LB compute        : 305.95 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.404947916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.345843817461076e-27,2.6683537843710303e-27,-1.1681816186004013e-15)
    sum a = (-1.8743937144766813e-25,-3.6559220602415726e-25,5.5100922053376806e-15)
    sum e = 1.2339006331261554e-09
    sum de = 2.8785854709258978e-11
Info: cfl dt = 0.0015488009649395342 cfl multiplier : 0.9999999998858179       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9535e+04 | 11520 |      1 | 3.900e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.293614635801035 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.0809562117123996, dt = 0.0015488009649395342 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.8%)
   patch tree reduce : 1.80 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 303.44 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.405295138888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.154393846716955e-27,1.7072471458215894e-27,-1.1595367350507436e-15)
    sum a = (2.0858649125228842e-27,1.7750377554785833e-25,5.649780896989545e-15)
    sum e = 1.233945329656588e-09
    sum de = 2.892525915409605e-11
Info: cfl dt = 0.0015489717084963463 cfl multiplier : 0.9999999999238787       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9825e+04 | 11520 |      1 | 3.863e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.43542086335066 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.082505012677339, dt = 0.0015489717084963463 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.1%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 289.75 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.405815972222221
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.0323485592821054e-27,2.3674012005828216e-27,-1.1506772092910934e-15)
    sum a = (2.951055050174664e-25,1.7365934899366056e-25,5.7859984570959885e-15)
    sum e = 1.233990241966812e-09
    sum de = 2.9058123951308327e-11
Info: cfl dt = 0.0015491457818877195 cfl multiplier : 0.9999999999492525       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9754e+04 | 11520 |      1 | 3.872e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.402523067765982 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.0840539843858354, dt = 0.0015491457818877195 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (1.9%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 299.66 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.406597222222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.357632282724669e-27,2.6752881757025557e-27,-1.141608355615691e-15)
    sum a = (1.7951752279053335e-25,-1.9797964627158695e-25,5.918741039572858e-15)
    sum e = 1.234035360088082e-09
    sum de = 2.918447416733243e-11
Info: cfl dt = 0.0015493228224271961 cfl multiplier : 0.9999999999661684       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9751e+04 | 11520 |      1 | 3.872e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.402633936095926 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.085603130167723, dt = 0.0015493228224271961 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (2.1%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 272.62 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.407465277777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.1052204382571396e-27,2.0387110514685105e-27,-1.1323354962360101e-15)
    sum a = (9.538393964340019e-26,-2.6776736063206004e-25,6.048005712081526e-15)
    sum e = 1.2340806740784804e-09
    sum de = 2.930433579382493e-11
Info: cfl dt = 0.0015495026224646522 cfl multiplier : 0.9999999999774456       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9326e+04 | 11520 |      1 | 3.928e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.198763444014965 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.0871524529901504, dt = 0.0015495026224646522 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (2.0%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.5%)
   LB compute        : 294.39 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.408072916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.0095258378820873e-27,1.5907493714519604e-27,-1.1228639591713702e-15)
    sum a = (-4.0829696160022415e-25,1.542042206739325e-25,6.173790441933409e-15)
    sum e = 1.2341261740286395e-09
    sum de = 2.941773574930257e-11
Info: cfl dt = 0.001549685110863887 cfl multiplier : 0.9999999999849637        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9767e+04 | 11520 |      1 | 3.870e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.413933524232352 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.088701955612615, dt = 0.001549685110863887 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (2.1%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 1.03 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.5%)
   LB compute        : 273.53 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.4092013888888895
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.1315103553229205e-27,2.131631895310953e-27,-1.1131990761606327e-15)
    sum a = (2.885705346266367e-25,1.261393520769823e-25,6.296094084977993e-15)
    sum e = 1.2341718500670596e-09
    sum de = 2.9524701931432813e-11
Info: cfl dt = 0.0015497343430668426 cfl multiplier : 0.9999999999899757       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9805e+04 | 11520 |      1 | 3.865e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.433988974351971 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.090251640723479, dt = 0.0015497343430668426 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (2.1%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.52 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.5%)
   LB compute        : 273.69 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.409982638888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.100366364325072e-27,2.3313423656588888e-27,-1.1033470368631573e-15)
    sum a = (-2.653930250401457e-25,1.2565671844030813e-25,6.414906046528758e-15)
    sum e = 1.234217688349375e-09
    sum de = 2.962525407413975e-11
Info: cfl dt = 0.0015495605906462064 cfl multiplier : 0.999999999993317        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7846e+04 | 11520 |      1 | 4.137e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.485408673613673 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.091801375066546, dt = 0.0015495605906462064 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (2.1%)
   patch tree reduce : 1.72 us    (0.6%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 272.95 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.410937499999999
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.9179311023119334e-27,2.513023418544858e-27,-1.0933146877728602e-15)
    sum a = (6.325274396964343e-26,5.502023458085629e-26,6.530211315842773e-15)
    sum e = 1.234263672346951e-09
    sum de = 2.971940998300464e-11
Info: cfl dt = 0.001549430316901395 cfl multiplier : 0.9999999999955446        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9831e+04 | 11520 |      1 | 3.862e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.44542420852141 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.093350935657192, dt = 0.001549430316901395 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (2.1%)
   patch tree reduce : 1.98 us    (0.7%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.5%)
   LB compute        : 269.86 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.411111111111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.559423070472063e-27,2.574046062262283e-27,-1.083107244132781e-15)
    sum a = (3.862955247835599e-25,8.582002711896016e-26,6.64201692339212e-15)
    sum e = 1.2343097934109357e-09
    sum de = 2.980720816315198e-11
Info: cfl dt = 0.001549346499058478 cfl multiplier : 0.9999999999970296        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6949e+04 | 11520 |      1 | 4.275e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.048489968549745 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.0949003659740937, dt = 0.001549346499058478 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (2.0%)
   patch tree reduce : 1.98 us    (0.7%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (0.5%)
   LB compute        : 270.88 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.411458333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.7113470106264886e-27,2.743245210751506e-27,-1.0727298409674107e-15)
    sum a = (-2.5718270570361945e-25,1.6747941943900498e-26,6.750330428561473e-15)
    sum e = 1.2343560430844986e-09
    sum de = 2.988868628555792e-11
Info: cfl dt = 0.0015493111401450777 cfl multiplier : 0.9999999999980197       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7969e+04 | 11520 |      1 | 4.119e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.541952760795105 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.0964497124731523, dt = 0.0015493111401450777 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.9%)
   patch tree reduce : 1.76 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 292.45 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.412152777777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.607270370659589e-27,2.7002519844960478e-27,-1.0621875712598795e-15)
    sum a = (-1.269270989322436e-25,3.498428164319964e-25,6.855160000477085e-15)
    sum e = 1.2344024130419461e-09
    sum de = 2.996388221534903e-11
Info: cfl dt = 0.0015493252036788794 cfl multiplier : 0.9999999999986798       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7682e+04 | 11520 |      1 | 4.161e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.402677607011157 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.0979990236132973, dt = 0.0015493252036788794 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.9%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.61 us    (0.5%)
   LB compute        : 291.53 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.413368055555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.690483066637896e-27,3.5739852922682664e-27,-1.051485492283798e-15)
    sum a = (-3.976679265672618e-25,1.0217964314829523e-25,6.956514299618964e-15)
    sum e = 1.2344488950574119e-09
    sum de = 3.003283397090855e-11
Info: cfl dt = 0.0015493885852922312 cfl multiplier : 0.9999999999991198       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7813e+04 | 11520 |      1 | 4.142e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.46613847699571 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.099548348816976, dt = 0.0004516511830239267 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (2.1%)
   patch tree reduce : 2.30 us    (0.8%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.5%)
   LB compute        : 264.17 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (63.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.415190972222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.105853107396276e-27,3.3465372565942284e-27,-1.0482650589863249e-15)
    sum a = (-2.0359372949359004e-26,3.574928369489354e-25,6.985049442633929e-15)
    sum e = 1.234462510212235e-09
    sum de = 3.0048946728328433e-11
Info: cfl dt = 0.0015494382919891173 cfl multiplier : 0.9999999999994132       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9829e+04 | 11520 |      1 | 3.862e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.210123768537068 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 1025                                                    [SPH][rank=0]
Info: time since start : 484.09942730200004 (s)                                       [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[-1.95122617e-12 -4.99499640e-11 -1.74758472e-11 ...  3.15776775e-07
 -2.01153453e-08 -2.86857463e-08]
(11520, 3)
[[-1.95122617e-12 -4.99499640e-11 -1.74758472e-11 -1.80403683e-09
   8.55005654e-09]
 [ 6.55026608e-06  7.66851938e-06  7.84101342e-06  4.41292495e-06
  -1.15096546e-07]
 [ 2.87496621e-05  3.58250849e-05  4.38679467e-05  5.08023012e-05
   4.67322704e-05]
 ...
 [ 3.46640636e-05  4.35205236e-05  5.43624826e-05  6.66685680e-05
   7.48313176e-05]
 [ 1.49485501e-05  1.82080378e-05  2.09532055e-05  1.99519730e-05
   6.37568513e-06]
 [ 8.01561905e-07  7.74606125e-07  3.15776775e-07 -2.01153453e-08
  -2.86857463e-08]]
compute original rho
Info: Dumping state to _to_trash/dusty_settle/dump/0000021.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.01 us   (68.2%)
Info: dump to _to_trash/dusty_settle/dump/0000021.sham                      [Shamrock Dump][rank=0]
              - took 1.25 ms, bandwidth = 2.37 GB/s
Info: evolve_until (target_time = 2.20s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 2.1, dt = 0.0015494382919891173 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.95 us    (0.8%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.4%)
   LB compute        : 358.53 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (71.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.415364583333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.0469107810783086e-27,3.955376815502172e-27,-1.0374357119421633e-15)
    sum a = (2.1008986729296316e-25,-1.025790640889911e-25,7.0822894762509995e-15)
    sum e = 1.234509075429267e-09
    sum de = 3.0112732557384664e-11
Info: cfl dt = 0.0015495411498844063 cfl multiplier : 0.9999999999996089       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9569e+04 | 11520 |      1 | 3.896e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.317465243857875 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.1015494382919893, dt = 0.0015495411498844063 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (1.9%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 307.07 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (60.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.415625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.494239791955723e-27,3.438071222170366e-27,-1.0263860792461943e-15)
    sum a = (9.858485468203238e-26,1.7700449937198849e-25,7.17571345288191e-15)
    sum e = 1.2345557857342203e-09
    sum de = 3.016750818909036e-11
Info: cfl dt = 0.0015497114826158423 cfl multiplier : 0.9999999999997392       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9834e+04 | 11520 |      1 | 3.861e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.446754459029505 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.1030989794418735, dt = 0.0015497114826158423 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (2.0%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 309.80 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.416753472222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.5074151354856215e-27,4.026107607083732e-27,-1.0151934115654298e-15)
    sum a = (4.788613277898281e-26,1.4417986456507917e-25,7.265694641994953e-15)
    sum e = 1.2346025790829336e-09
    sum de = 3.0216176067788966e-11
Info: cfl dt = 0.0015497166148819848 cfl multiplier : 0.9999999999998263       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9893e+04 | 11520 |      1 | 3.854e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.476648100265871 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.1046486909244893, dt = 0.0015497166148819848 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.7%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 338.51 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.418142361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.447779370034502e-27,4.132897233589226e-27,-1.0038639214187117e-15)
    sum a = (1.5579080941058553e-25,-3.39463419486969e-25,7.352230227253791e-15)
    sum e = 1.2346494432822699e-09
    sum de = 3.0258757134772854e-11
Info: cfl dt = 0.001549641216706017 cfl multiplier : 0.9999999999998842        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7150e+04 | 11520 |      1 | 4.243e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.148524322802047 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.106198407539371, dt = 0.001549641216706017 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.7%)
   patch tree reduce : 2.33 us    (0.7%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 323.38 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.419184027777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.1350383209826994e-27,3.24113450835504e-27,-9.924035496064044e-16)
    sum a = (2.4498927198626494e-25,-9.439093480472573e-26,7.435325690818314e-15)
    sum e = 1.2346963664750255e-09
    sum de = 3.0295289823742116e-11
Info: cfl dt = 0.0015495816240488909 cfl multiplier : 0.9999999999999227       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9796e+04 | 11520 |      1 | 3.866e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.428914760323265 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.1077480487560774, dt = 0.0015495816240488909 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (2.0%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1.10 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 271.83 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (59.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.4203125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.6752881757025557e-27,3.3298947173985676e-27,-9.80817521469353e-16)
    sum a = (1.178569150706082e-25,-1.31919860690942e-25,7.514992882491794e-15)
    sum e = 1.2347433397897921e-09
    sum de = 3.0325816344905515e-11
Info: cfl dt = 0.00154953764438117 cfl multiplier : 0.9999999999999485         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9833e+04 | 11520 |      1 | 3.861e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.446527806362209 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.109297630380126, dt = 0.00154953764438117 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (1.9%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 321.59 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.69 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.422395833333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.5449216186698755e-27,3.1010598034582242e-27,-9.691110316939982e-16)
    sum a = (2.672417337691304e-25,-2.7398057526510695e-25,7.591244263005471e-15)
    sum e = 1.2347903544222605e-09
    sum de = 3.035037900902573e-11
Info: cfl dt = 0.0015495090236172927 cfl multiplier : 0.9999999999999657       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9811e+04 | 11520 |      1 | 3.864e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.435263335321133 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.1108471680245073, dt = 0.0015495090236172927 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (2.1%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.5%)
   LB compute        : 270.67 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.424045138888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0733830081261384e-27,2.5185709316100785e-27,-9.57289253015583e-16)
    sum a = (2.741331318744005e-25,9.075453999047374e-26,7.664092937643761e-15)
    sum e = 1.2348374016280979e-09
    sum de = 3.036902065348409e-11
Info: cfl dt = 0.0015494954726040008 cfl multiplier : 0.9999999999999772       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9674e+04 | 11520 |      1 | 3.882e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.368986053703505 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.1123966770481246, dt = 0.0015494954726040008 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (2.1%)
   patch tree reduce : 1.95 us    (0.7%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.5%)
   LB compute        : 265.32 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.425868055555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.65038513690308e-27,2.9665326116266286e-27,-9.453573358676818e-16)
    sum a = (-4.366752646853594e-25,1.4908109235820142e-25,7.733552646641018e-15)
    sum e = 1.234884472722468e-09
    sum de = 3.038178454297725e-11
Info: cfl dt = 0.00154949669083064 cfl multiplier : 0.9999999999999849         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9844e+04 | 11520 |      1 | 3.860e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.450942417106951 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.1139461725207287, dt = 0.00154949669083064 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.8%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 321.88 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.426822916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.8888674287135425e-27,3.2563901692843965e-27,-9.333204078808386e-16)
    sum a = (-6.557548769005122e-25,1.0372739929349174e-25,7.799637754994421e-15)
    sum e = 1.2349315590797363e-09
    sum de = 3.038871447561876e-11
Info: cfl dt = 0.0015495123849434956 cfl multiplier : 0.9999999999999899       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6452e+04 | 11520 |      1 | 4.355e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.808759306485932 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.115495669211559, dt = 0.0015495123849434956 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.5%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 336.49 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.428298611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.080889298602784e-27,3.3382159869963984e-27,-9.21183573252459e-16)
    sum a = (3.4699971598607093e-25,-2.2850206315642982e-26,7.862363258884968e-15)
    sum e = 1.2349786521340555e-09
    sum de = 3.038985476135492e-11
Info: cfl dt = 0.0015495422826591393 cfl multiplier : 0.9999999999999932       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9731e+04 | 11520 |      1 | 3.875e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.396257290512514 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.117045181596503, dt = 0.0015495422826591393 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (2.0%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 290.27 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.429253472222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.7307633063547602e-27,3.145439907979988e-27,-9.089519119684706e-16)
    sum a = (-5.719153119458357e-25,4.3731045493132705e-26,7.921744772912933e-15)
    sum e = 1.235025743380294e-09
    sum de = 3.038525020606629e-11
Info: cfl dt = 0.0015495861415246407 cfl multiplier : 0.9999999999999956       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9833e+04 | 11520 |      1 | 3.862e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.445882251043605 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.118594723879162, dt = 0.0015495861415246407 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (2.2%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1.03 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 267.88 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.431163194444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.322899556073026e-27,3.3409897435290084e-27,-8.96630478968357e-16)
    sum a = (1.9434047770080234e-25,3.5519616653993416e-25,7.977798519842201e-15)
    sum e = 1.2350728243751945e-09
    sum de = 3.037494611299248e-11
Info: cfl dt = 0.001549643752081652 cfl multiplier : 0.999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8270e+04 | 11520 |      1 | 4.075e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.689531733780619 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.1201443100206863, dt = 0.001549643752081652 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.8%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 1.43 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 291.56 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.433506944444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.450553126567112e-27,4.18282485117621e-27,-8.842243032824074e-16)
    sum a = (-4.167347289724244e-25,-1.0450127736608998e-27,8.03054132692881e-15)
    sum e = 1.2351198867387043e-09
    sum de = 3.0358988260991196e-11
Info: cfl dt = 0.0015497149357017812 cfl multiplier : 0.9999999999999979       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9658e+04 | 11520 |      1 | 3.884e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.362249371416251 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.121693953772768, dt = 0.0015497149357017812 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (1.9%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 307.89 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.434982638888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.5517344700133686e-27,3.845813432464068e-27,-8.717383871651967e-16)
    sum a = (2.16780168049619e-25,3.1233885435457366e-25,8.079990640291057e-15)
    sum e = 1.2351669221551584e-09
    sum de = 3.033742294359104e-11
Info: cfl dt = 0.0015497995372738115 cfl multiplier : 0.9999999999999986       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7526e+04 | 11520 |      1 | 4.185e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.330495681882125 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.12324366870847, dt = 0.0015497995372738115 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.7%)
   patch tree reduce : 2.32 us    (0.7%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 322.19 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.435677083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.761907297352609e-27,4.590567061469912e-27,-8.591777052398463e-16)
    sum a = (-2.7580015955049926e-25,-9.093691448249287e-26,8.126164514879608e-15)
    sum e = 1.2352139223743769e-09
    sum de = 3.031029692055218e-11
Info: cfl dt = 0.0015498974132762502 cfl multiplier : 0.9999999999999991       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9861e+04 | 11520 |      1 | 3.858e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.462107925246015 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.124793468245744, dt = 0.0015498974132762502 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.0%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 301.83 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.436371527777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.530237856885639e-27,4.1523135293174975e-27,-8.46547203754082e-16)
    sum a = (-2.06839024636744e-25,-1.6072046820816704e-25,8.169081606837691e-15)
    sum e = 1.2352608792122851e-09
    sum de = 3.027765737478489e-11
Info: cfl dt = 0.0015500084158801518 cfl multiplier : 0.9999999999999994       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8977e+04 | 11520 |      1 | 3.976e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.034745649012562 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.1263433656590203, dt = 0.0015500084158801518 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (2.1%)
   patch tree reduce : 1.76 us    (0.6%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 268.62 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.4375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.8200954145434075e-27,3.823623380203186e-27,-8.33851799970051e-16)
    sum a = (-4.808417899541118e-25,-5.581630270571542e-26,8.208761165241657e-15)
    sum e = 1.2353077845509763e-09
    sum de = 3.023955200587129e-11
Info: cfl dt = 0.001550132375420604 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9795e+04 | 11520 |      1 | 3.866e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.432152499911329 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.1278933740749, dt = 0.001550132375420604 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (1.9%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 322.91 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.439583333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.763172635630882e-27,3.769535127817287e-27,-8.210963816984202e-16)
    sum a = (-9.96208527469623e-26,4.659231404434677e-25,8.245223039246453e-15)
    sum e = 1.2353546303385282e-09
    sum de = 3.0196028905217676e-11
Info: cfl dt = 0.0015502690789760412 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6487e+04 | 11520 |      1 | 4.349e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.830812232371764 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.129443506450321, dt = 0.0015502690789760412 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.7%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 309.89 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.440190972222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.646674861261252e-27,4.9303522367146634e-27,-8.082858070075974e-16)
    sum a = (1.5369939698499742e-25,-1.5106432827901773e-25,8.278487669585744e-15)
    sum e = 1.2354014085878048e-09
    sum de = 3.0147136627329875e-11
Info: cfl dt = 0.0015504182487435989 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9772e+04 | 11520 |      1 | 3.869e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.423210444049097 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.130993775529297, dt = 0.0015504182487435989 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.8%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.58 us    (0.5%)
   LB compute        : 289.25 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.44157986111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.1938591073126346e-27,4.19114612077404e-27,-7.954249040895701e-16)
    sum a = (4.606932225012312e-26,-9.416903428211692e-27,8.30857606063086e-15)
    sum e = 1.235448111374927e-09
    sum de = 3.0092924142916186e-11
Info: cfl dt = 0.0015505795213491742 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9871e+04 | 11520 |      1 | 3.857e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.472759042317174 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.1325441937780405, dt = 0.0015505795213491742 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (1.8%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 323.56 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.444010416666668
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.178603446383278e-27,4.349250243132823e-27,-7.825184714028987e-16)
    sum a = (-3.845480581680155e-25,-4.507798166536823e-25,8.33550978924823e-15)
    sum e = 1.23549473083701e-09
    sum de = 3.0033440879619605e-11
Info: cfl dt = 0.0015506426453132558 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9877e+04 | 11520 |      1 | 3.856e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.477047604887886 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.1340947732993896, dt = 0.0015506426453132558 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (2.1%)
   patch tree reduce : 1.71 us    (0.6%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 279.42 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.446354166666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.1209872283375996e-27,3.248068899686566e-27,-7.695721930082002e-16)
    sum a = (-3.9230070767666103e-25,3.031660415012317e-25,8.359309413541135e-15)
    sum e = 1.235541255871911e-09
    sum de = 2.996874110771763e-11
Info: cfl dt = 0.0015507239977509263 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9968e+04 | 11520 |      1 | 3.844e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.521803482158184 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.135645415944703, dt = 0.0015507239977509263 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.8%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 323.26 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.4476562500000005
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.774206891767306e-27,4.339542095268687e-27,-7.565907589401553e-16)
    sum a = (2.988778139018163e-25,1.6881914384425573e-25,8.379998422489787e-15)
    sum e = 1.2355876789737975e-09
    sum de = 2.9898876250253354e-11
Info: cfl dt = 0.0015508459937376528 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6345e+04 | 11520 |      1 | 4.373e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.766993754975264 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.137196139942454, dt = 0.0015508459937376528 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.9%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 307.70 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.449999999999999
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.7007631136471515e-27,4.526770661219877e-27,-7.435786304868917e-16)
    sum a = (-1.6194854891298023e-25,-3.316303310388777e-25,8.397601039091413e-15)
    sum e = 1.2356339933761406e-09
    sum de = 2.98238966476985e-11
Info: cfl dt = 0.0015507610648482207 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9452e+04 | 11520 |      1 | 3.911e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.273708099937888 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.1387469859361916, dt = 0.0015507610648482207 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.9%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 280.87 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.451649305555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.349822142277943e-27,3.5573427530726055e-27,-7.30542308283289e-16)
    sum a = (-3.148213664512598e-25,3.4727431788279938e-25,8.412139718767424e-15)
    sum e = 1.235680184993863e-09
    sum de = 2.97438649549047e-11
Info: cfl dt = 0.0015506394964161885 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9926e+04 | 11520 |      1 | 3.850e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.502461517137101 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.14029774700104, dt = 0.0015506394964161885 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (2.2%)
   patch tree reduce : 1.95 us    (0.7%)
   gen split merge   : 941.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.5%)
   LB compute        : 265.27 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.454427083333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.974610801248395e-27,4.654363461719947e-27,-7.174868391766514e-16)
    sum a = (8.18801833400406e-25,-6.00684714702069e-26,8.423640327620735e-15)
    sum e = 1.235726244972387e-09
    sum de = 2.965883875896594e-11
Info: cfl dt = 0.0015505071411718173 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9636e+04 | 11520 |      1 | 3.887e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.360779829369159 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.1418483864974562, dt = 0.0015505071411718173 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (2.1%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.5%)
   LB compute        : 259.32 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.455208333333332
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.8256429276086275e-27,4.25632939929038e-27,-7.044170080458926e-16)
    sum a = (4.860509047223538e-25,5.542131977547173e-25,8.432129717684028e-15)
    sum e = 1.2357721653137436e-09
    sum de = 2.956887457593654e-11
Info: cfl dt = 0.0015503662227123285 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7537e+04 | 11520 |      1 | 4.183e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.342755436404486 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.143398893638628, dt = 0.0015503662227123285 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.8%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 299.89 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.456163194444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.304870138611059e-27,5.6334995177313536e-27,-6.913375375164009e-16)
    sum a = (-1.595575707818702e-25,1.406904788470555e-25,8.437635443890065e-15)
    sum e = 1.2358179381762608e-09
    sum de = 2.947402928803553e-11
Info: cfl dt = 0.0015502194706478339 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9037e+04 | 11520 |      1 | 3.967e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.0679146555955 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 2.1449492598613404, dt = 0.0015502194706478339 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.9%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 285.56 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.457725694444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.105098898269107e-27,5.544739308687827e-27,-6.782530828185145e-16)
    sum a = (2.119704742220729e-25,-5.4143727516551464e-27,8.440185725554647e-15)
    sum e = 1.2358635558915439e-09
    sum de = 2.937436014687263e-11
Info: cfl dt = 0.001550070030140895 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6874e+04 | 11520 |      1 | 4.287e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.01884183813571 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.1464994793319883, dt = 0.001550070030140895 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (2.1%)
   patch tree reduce : 1.66 us    (0.6%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 276.21 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.459288194444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.365892782328484e-27,5.381087673263824e-27,-6.651682271284985e-16)
    sum a = (1.7818611965488045e-25,5.930624317504561e-25,8.43980939129566e-15)
    sum e = 1.2359090109763766e-09
    sum de = 2.926992469023802e-11
Info: cfl dt = 0.001549921400702528 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9532e+04 | 11520 |      1 | 3.901e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.305383100891586 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.148049549362129, dt = 0.001549921400702528 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (2.1%)
   patch tree reduce : 1.80 us    (0.6%)
   gen split merge   : 982.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.5%)
   LB compute        : 259.69 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.4609375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.152660248884073e-27,6.79431662662873e-27,-6.520874776060231e-16)
    sum a = (-8.897767155568363e-25,2.666911430974073e-25,8.436535859697644e-15)
    sum e = 1.2359542961422143e-09
    sum de = 2.9160780603380833e-11
Info: cfl dt = 0.0015497773397258675 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9828e+04 | 11520 |      1 | 3.862e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.44723950643226 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.1495994707628316, dt = 0.0015497773397258675 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (2.0%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 266.68 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.462847222222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.460772403582352e-27,6.937165088058156e-27,-6.390152623638892e-16)
    sum a = (4.168623217729245e-25,-8.035572674971804e-26,8.430395096405372e-15)
    sum e = 1.2359994043013093e-09
    sum de = 2.90469857611071e-11
Info: cfl dt = 0.001549641760428004 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9777e+04 | 11520 |      1 | 3.869e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.421099254425243 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.1511492481025574, dt = 0.001549641760428004 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (2.2%)
   patch tree reduce : 1.77 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.5%)
   LB compute        : 272.22 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.4640625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.747977744695542e-27,6.53358351256337e-27,-6.25955928473721e-16)
    sum a = (-1.5790441188843452e-25,-4.704124653914974e-25,8.421417556819555e-15)
    sum e = 1.236044328569737e-09
    sum de = 2.8928598108876125e-11
Info: cfl dt = 0.0015495186246779603 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9839e+04 | 11520 |      1 | 3.861e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.449977264233938 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.1526988898629855, dt = 0.0015495186246779603 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.7%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 320.37 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.465625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.435522645216299e-27,5.557221213084573e-27,-6.129137411076976e-16)
    sum a = (1.539102024814758e-25,-3.691980895165505e-25,8.409634163690473e-15)
    sum e = 1.2360890622667474e-09
    sum de = 2.880567551517616e-11
Info: cfl dt = 0.0015494118322855737 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9834e+04 | 11520 |      1 | 3.861e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.446513098504317 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.1542484084876636, dt = 0.0015494118322855737 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (2.2%)
   patch tree reduce : 1.68 us    (0.6%)
   gen split merge   : 1.32 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 267.91 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.467621527777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.9567029237744604e-27,5.0732006981440894e-27,-5.998928837245516e-16)
    sum a = (4.71383280177911e-25,1.4241575541033907e-25,8.39507625973041e-15)
    sum e = 1.2361335989105048e-09
    sum de = 2.867827573820033e-11
Info: cfl dt = 0.0015493251109567141 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9632e+04 | 11520 |      1 | 3.888e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.347568236316718 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.155797820319949, dt = 0.0015493251109567141 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.8%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 1.39 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 312.53 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (63.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.4690972222222225
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.987275015627189e-27,5.614083222003083e-27,-5.8689745936173875e-16)
    sum a = (3.6158690159106807e-25,2.0231225397552412e-25,8.377775577057515e-15)
    sum e = 1.2361779322105645e-09
    sum de = 2.8546456430073157e-11
Info: cfl dt = 0.0015492618990840233 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9581e+04 | 11520 |      1 | 3.894e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.322028849212224 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.1573471454309057, dt = 0.0015492618990840233 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (2.0%)
   patch tree reduce : 1.97 us    (0.7%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.5%)
   LB compute        : 278.44 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.470659722222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.4966668289217564e-27,6.066205536818548e-27,-5.739314930514476e-16)
    sum a = (3.5406447387462917e-25,9.480699828461727e-26,8.357764173265452e-15)
    sum e = 1.236222056057014e-09
    sum de = 2.8410275018605424e-11
Info: cfl dt = 0.0015492252453498598 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9700e+04 | 11520 |      1 | 3.879e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.379178488396722 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.1588964073299897, dt = 0.0015492252453498598 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (2.0%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 268.62 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.472135416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.9557843050627643e-27,6.15357886759577e-27,-5.609989352527341e-16)
    sum a = (5.341367479716845e-25,4.445222219161136e-26,8.335074428788121e-15)
    sum e = 1.2362659645065192e-09
    sum de = 2.8269788768558332e-11
Info: cfl dt = 0.0015492177122918157 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7875e+04 | 11520 |      1 | 4.133e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.495209497340152 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.1604456325753394, dt = 0.0015492177122918157 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (2.1%)
   patch tree reduce : 1.68 us    (0.6%)
   gen split merge   : 1.44 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.5%)
   LB compute        : 281.37 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.474392361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9875699153985097e-27,6.125841302269667e-27,-5.481036660759313e-16)
    sum a = (2.10539215851246e-25,2.475300329701359e-25,8.309739013922123e-15)
    sum e = 1.2363096517660512e-09
    sum de = 2.8125054763315728e-11
Info: cfl dt = 0.0015492412956074999 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7140e+04 | 11520 |      1 | 4.245e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.139412558625303 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.1619948502876314, dt = 0.0015492412956074999 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (2.2%)
   patch tree reduce : 2.22 us    (0.8%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 261.27 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.475260416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.869338543195999e-27,6.673658217460186e-27,-5.352495002771857e-16)
    sum a = (7.322717246090977e-27,-3.630569925533515e-25,8.281790863651443e-15)
    sum e = 1.2363531121744628e-09
    sum de = 2.797612986042881e-11
Info: cfl dt = 0.0015492973547188281 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9275e+04 | 11520 |      1 | 3.935e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.173325129719826 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.1635440915832387, dt = 0.0015492973547188281 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (1.8%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 320.94 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.4765625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.048765918899223e-27,5.6016013176063365e-27,-5.224401928124501e-16)
    sum a = (8.876020904352699e-27,1.664198444435479e-25,8.251263179621649e-15)
    sum e = 1.2363963401824219e-09
    sum de = 2.7823070753168555e-11
Info: cfl dt = 0.0015493865601316082 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9586e+04 | 11520 |      1 | 3.894e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.324105711395909 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.1650933889379576, dt = 0.0015493865601316082 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.6%)
   patch tree reduce : 2.22 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.3%)
   LB compute        : 340.53 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.478038194444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0033456556777303e-27,6.317230503019773e-27,-5.096794447689733e-16)
    sum a = (1.686222071304404e-25,1.399249220440551e-25,8.218189436195298e-15)
    sum e = 1.2364393303314703e-09
    sum de = 2.766593407062205e-11
Info: cfl dt = 0.0015495088578860129 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6682e+04 | 11520 |      1 | 4.317e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.919201818450892 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.1666427754980893, dt = 0.0015495088578860129 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.9%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 292.51 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.479600694444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6424105868718256e-27,6.501685312438353e-27,-4.969709094488805e-16)
    sum a = (-3.0813106569460395e-25,4.540916819536189e-25,8.182603372504341e-15)
    sum e = 1.2364820772327905e-09
    sum de = 2.750477640967933e-11
Info: cfl dt = 0.001549663451427686 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9518e+04 | 11520 |      1 | 3.903e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.293313417247258 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.168192284355975, dt = 0.001549663451427686 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (2.0%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 1.08 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 273.62 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.4815104166666675
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4562047495721706e-27,7.440601898726911e-27,-4.8431819852496e-16)
    sum a = (5.705062436272697e-26,3.7739731382694633e-25,8.144539023203229e-15)
    sum e = 1.236524575546048e-09
    sum de = 2.733965433818493e-11
Info: cfl dt = 0.0015498488035798124 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5974e+04 | 11520 |      1 | 4.435e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.578609086005516 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.169741947807403, dt = 0.0015498488035798124 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (2.2%)
   patch tree reduce : 1.83 us    (0.7%)
   gen split merge   : 981.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 260.69 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.48359375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.091759145154681e-27,7.99674008351526e-27,-4.717248879291483e-16)
    sum a = (1.2117987539667524e-25,-2.9076734980046397e-25,8.104030720642294e-15)
    sum e = 1.2365668199589376e-09
    sum de = 2.7170624540674726e-11
Info: cfl dt = 0.0015500626573536906 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9694e+04 | 11520 |      1 | 3.880e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.381418170620428 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.1712917966109826, dt = 0.0015500626573536906 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.9%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 292.51 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.485069444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8509190662216343e-27,6.9759976795147e-27,-4.59194523407722e-16)
    sum a = (-2.7625505562184733e-25,-2.1472758821548746e-25,8.061113110721394e-15)
    sum e = 1.2366088051683022e-09
    sum de = 2.6997743942192286e-11
Info: cfl dt = 0.0015503020755300212 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8245e+04 | 11520 |      1 | 4.079e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.681617989412958 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.1728418592683365, dt = 0.0015503020755300212 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (2.1%)
   patch tree reduce : 1.93 us    (0.7%)
   gen split merge   : 992.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 261.65 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.4860243055555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.5584436817663502e-27,6.727746469846085e-27,-4.467306255135698e-16)
    sum a = (5.1786034463832785e-25,-1.1835064373341281e-25,8.01582124733556e-15)
    sum e = 1.2366505258632041e-09
    sum de = 2.6821069941964157e-11
Info: cfl dt = 0.0015505634983967811 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7953e+04 | 11520 |      1 | 4.121e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.542532304434257 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.1743921613438664, dt = 0.0015505634983967811 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.79 us    (2.2%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 1.08 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 285.67 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.487413194444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.172865613835902e-27,6.594606156280795e-27,-4.343366937121968e-16)
    sum a = (4.457870548949839e-25,-2.0661157660106997e-25,7.968190608911917e-15)
    sum e = 1.2366919767106523e-09
    sum de = 2.6640660388613078e-11
Info: cfl dt = 0.0015508428180942668 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9574e+04 | 11520 |      1 | 3.895e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.33009685542297 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.175942724842263, dt = 0.0015508428180942668 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.8%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 317.90 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.4892361111111105
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.934686231296867e-28,6.236791563574076e-27,-4.220162096992252e-16)
    sum a = (-5.697517818503998e-25,1.0358871146686122e-25,7.918257136374019e-15)
    sum e = 1.2367331523438069e-09
    sum de = 2.6456573700478157e-11
Info: cfl dt = 0.0015511354679642328 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9327e+04 | 11520 |      1 | 3.928e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.213045490261369 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.1774935676603575, dt = 0.0015511354679642328 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.7%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 334.07 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.48984375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.171504645467225e-27,6.66117631306344e-27,-4.0977263969331486e-16)
    sum a = (3.239747630088735e-25,1.5568540666234634e-25,7.866057286561296e-15)
    sum e = 1.2367740473534949e-09
    sum de = 2.626886889720385e-11
Info: cfl dt = 0.00155143652560438 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6721e+04 | 11520 |      1 | 4.311e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.952692052692168 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.1790447031283215, dt = 0.00155143652560438 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.7%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 1.44 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 329.86 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.68 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490885416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0685030242964427e-27,6.885850592204867e-27,-3.9760943562579445e-16)
    sum a = (-4.555340353505762e-25,1.5769915390502136e-25,7.811628099953978e-15)
    sum e = 1.236814656282969e-09
    sum de = 2.607760567189391e-11
Info: cfl dt = 0.0015517408237836028 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9610e+04 | 11520 |      1 | 3.891e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.355812764175676 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.1805961396539257, dt = 0.0015517408237836028 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.9%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.5%)
   LB compute        : 298.52 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (63.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.492274305555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2911228959360405e-27,7.172934393330025e-27,-3.855300351165848e-16)
    sum a = (1.535274240799756e-25,3.3788237826338115e-25,7.75500723112868e-15)
    sum e = 1.2368549736262793e-09
    sum de = 2.5882844587174192e-11
Info: cfl dt = 0.0015520430729147835 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5938e+04 | 11520 |      1 | 4.441e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.577872336168893 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.1821478804777095, dt = 0.0015520430729147835 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (2.0%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.60 us    (0.5%)
   LB compute        : 309.81 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.493576388888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.584248379578655e-27,7.80951151756407e-27,-3.735378603194954e-16)
    sum a = (1.3177562535124625e-25,-3.839544742700369e-25,7.696232950138262e-15)
    sum e = 1.236894993830539e-09
    sum de = 2.5684647017031994e-11
Info: cfl dt = 0.0015523379847947171 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9669e+04 | 11520 |      1 | 3.883e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.389971329806016 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.1836999235506243, dt = 0.0015523379847947171 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.8%)
   patch tree reduce : 1.49 us    (0.5%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.5%)
   LB compute        : 286.37 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.495486111111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4229371012290421e-27,6.668110704394966e-27,-3.616363156793426e-16)
    sum a = (-2.9002398304972447e-26,-4.920144812674658e-25,7.635344199052619e-15)
    sum e = 1.2369347113014846e-09
    sum de = 2.548307527147207e-11
Info: cfl dt = 0.0015526203903364721 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7942e+04 | 11520 |      1 | 4.123e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.554794161656359 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.185252261535419, dt = 0.0015526203903364721 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.9%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.41 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.5%)
   LB compute        : 291.70 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.497222222222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.615193100895588e-27,5.816567448883628e-27,-3.498287845485882e-16)
    sum a = (1.1244947671028457e-25,-9.297631897309453e-26,7.572380598345693e-15)
    sum e = 1.2369741204124425e-09
    sum de = 2.5278192671531444e-11
Info: cfl dt = 0.0015527301588590568 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9634e+04 | 11520 |      1 | 3.887e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.378030205869015 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.1868048819257555, dt = 0.0015527301588590568 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.8%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 312.06 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498177083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.279048481099887e-27,6.002409136568513e-27,-3.381198001055815e-16)
    sum a = (-4.995091714185786e-25,-1.393868132767287e-25,7.507389108208195e-15)
    sum e = 1.2370132115926966e-09
    sum de = 2.5070084104771382e-11
Info: cfl dt = 0.0015526908856330064 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9620e+04 | 11520 |      1 | 3.889e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.372493162064092 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.1883576120846144, dt = 0.0015526908856330064 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (1.9%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 1.19 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 330.99 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.499045138888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.535733550155604e-27,5.756931683432509e-27,-3.265136025855654e-16)
    sum a = (1.0614056747686263e-25,-2.0842006586033182e-25,7.44041689594001e-15)
    sum e = 1.2370519761340925e-09
    sum de = 2.485883316930772e-11
Info: cfl dt = 0.0015526597056777964 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9602e+04 | 11520 |      1 | 3.892e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.363399855602038 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.1899103029702474, dt = 0.0015526597056777964 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.33 us    (2.2%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 317.08 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.500781249999999
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.951944479932797e-27,5.421307142986672e-27,-3.150131606498211e-16)
    sum a = (1.7148749762862677e-26,-1.2576766870161252e-25,7.37150513315192e-15)
    sum e = 1.2370904094557903e-09
    sum de = 2.4644503204950602e-11
Info: cfl dt = 0.0015526391155827601 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9447e+04 | 11520 |      1 | 3.912e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.287986800904509 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.191462962675925, dt = 0.0015526391155827601 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.8%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 312.14 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501996527777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9520311598244413e-27,5.253494872763754e-27,-3.036213716980521e-16)
    sum a = (-2.1562073781898794e-25,-1.5595723480254215e-25,7.300695236071984e-15)
    sum e = 1.2371285070995495e-09
    sum de = 2.4427156989309007e-11
Info: cfl dt = 0.001552631488169526 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7569e+04 | 11520 |      1 | 4.179e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.376462523669597 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.193015601791508, dt = 0.001552631488169526 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.8%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 311.70 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.503125000000001
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4722838694721454e-27,4.9594766803070705e-27,-2.923410534969651e-16)
    sum a = (1.780391105586521e-25,5.197464990805028e-26,7.22802878283771e-15)
    sum e = 1.2371662647552286e-09
    sum de = 2.4206857000803013e-11
Info: cfl dt = 0.0015526390257965558 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8056e+04 | 11520 |      1 | 4.106e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.612779643975253 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.1945682332796776, dt = 0.0015526390257965558 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.7%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 320.23 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.504079861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.890315076973864e-27,5.2313048205028724e-27,-2.8117494604026263e-16)
    sum a = (1.811873242231647e-25,2.95549306062684e-25,7.153547495816625e-15)
    sum e = 1.2372036782541293e-09
    sum de = 2.3983665402680224e-11
Info: cfl dt = 0.001552663715457098 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9594e+04 | 11520 |      1 | 3.893e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.358962935977653 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.196120872305474, dt = 0.001552663715457098 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.8%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 581.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 292.05 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (75.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.504774305555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6013243182325368e-27,5.866495066470612e-27,-2.701257136833922e-16)
    sum a = (-6.918858294942929e-26,1.9889498592734833e-25,7.077293241245363e-15)
    sum e = 1.237240743561138e-09
    sum de = 2.375764393845899e-11
Info: cfl dt = 0.0015527072879109342 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9526e+04 | 11520 |      1 | 3.902e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.326133877733483 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.197673536020931, dt = 0.0015527072879109342 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.8%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 301.76 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505642361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8719389399453213e-27,6.113359397872922e-27,-2.5919594749580315e-16)
    sum a = (1.901964854410827e-26,-1.523901839016054e-26,6.999308082208875e-15)
    sum e = 1.2372774567658797e-09
    sum de = 2.352885404748825e-11
Info: cfl dt = 0.0015527711816662121 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5478e+04 | 11520 |      1 | 4.521e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.362606609524612 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.1992262433088423, dt = 0.0007737566911578675 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.2%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.5%)
   LB compute        : 288.81 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.38 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.50625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7870793260257773e-27,5.930291466720647e-27,-2.53840730096521e-16)
    sum a = (4.475927703977132e-25,-1.2682169618400442e-25,6.96004513742466e-15)
    sum e = 1.2372954824076345e-09
    sum de = 2.341282398301729e-11
Info: cfl dt = 0.001552818972048068 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9691e+04 | 11520 |      1 | 3.880e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.179251406685079 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 1090                                                    [SPH][rank=0]
Info: time since start : 513.129740084 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[-2.35800489e-13 -2.15292046e-11 -1.25002449e-11 ... -1.67888749e-09
 -1.28497751e-08 -4.49433960e-09]
(11520, 3)
[[-2.35800489e-13 -2.15292046e-11 -1.25002449e-11  1.46851507e-09
  -9.47330017e-11]
 [ 6.26657576e-06  6.73318208e-06  4.92754274e-06 -2.77945882e-09
  -8.71428727e-08]
 [ 2.85914374e-05  3.52257476e-05  4.16471606e-05  4.20486976e-05
   1.68506890e-05]
 ...
 [ 3.47984292e-05  4.35589066e-05  5.38412252e-05  6.28843291e-05
   5.16677295e-05]
 [ 1.46678532e-05  1.72219938e-05  1.76285396e-05  9.67405783e-06
  -2.71089596e-07]
 [ 6.77628065e-07  4.19537664e-07 -1.67888749e-09 -1.28497751e-08
  -4.49433960e-09]]
compute original rho
Info: Dumping state to _to_trash/dusty_settle/dump/0000022.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 31.72 us   (86.2%)
Info: dump to _to_trash/dusty_settle/dump/0000022.sham                      [Shamrock Dump][rank=0]
              - took 1.19 ms, bandwidth = 2.48 GB/s
Info: evolve_until (target_time = 2.30s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 2.2, dt = 0.001552818972048068 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.40 us    (1.0%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 316.90 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.506684027777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.516585303602372e-28,5.734741631171627e-27,-2.430482299436454e-16)
    sum a = (7.455302808349746e-26,1.7236123093639898e-26,6.879313230178016e-15)
    sum e = 1.2373317957387924e-09
    sum de = 2.318101372031533e-11
Info: cfl dt = 0.001552907140252028 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4468e+04 | 11520 |      1 | 4.708e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.873054165035585 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.2015528189720484, dt = 0.001552907140252028 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.7%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 315.40 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.507378472222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1321260647631895e-27,5.845691892476035e-27,-2.324279763272287e-16)
    sum a = (1.2815309931965732e-25,1.0574669404923198e-25,6.797189292046882e-15)
    sum e = 1.2373676137225755e-09
    sum de = 2.294557116144424e-11
Info: cfl dt = 0.001553025931328947 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9496e+04 | 11520 |      1 | 3.906e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.314074654450602 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.2031057261123004, dt = 0.001553025931328947 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.7%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 307.62 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.508072916666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.869953311937615e-28,6.0717530498837686e-27,-2.219355305214018e-16)
    sum a = (2.5568626405427624e-25,1.2358749606698089e-25,6.713481684624327e-15)
    sum e = 1.2374030659771187e-09
    sum de = 2.270757750030287e-11
Info: cfl dt = 0.0015530841078546665 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7519e+04 | 11520 |      1 | 4.186e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.355445125254128 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.2046587520436294, dt = 0.0015530841078546665 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (2.1%)
   patch tree reduce : 1.71 us    (0.6%)
   gen split merge   : 1.03 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 271.73 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.508854166666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.212642733901769e-28,6.260368494101263e-27,-2.115739288503962e-16)
    sum a = (6.2660269574277885e-25,-1.1062295803356075e-25,6.628238527953618e-15)
    sum e = 1.2374381479453285e-09
    sum de = 2.2467102334448588e-11
Info: cfl dt = 0.0015531033697238302 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9760e+04 | 11520 |      1 | 3.871e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.443664486690267 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.206211836151484, dt = 0.0015531033697238302 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.9%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 1.42 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 291.06 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.509027777777779
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.57610847926422e-28,5.888685118731494e-27,-2.0134578415314537e-16)
    sum a = (1.8778054350117918e-25,8.920401008874462e-27,6.541506188730514e-15)
    sum e = 1.237472854932425e-09
    sum de = 2.2224216348463962e-11
Info: cfl dt = 0.0015531277523258445 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9890e+04 | 11520 |      1 | 3.854e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.506777136578911 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.207764939521208, dt = 0.0015531277523258445 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (1.8%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 326.25 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.509722222222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.443488245048794e-28,6.0883955890794295e-27,-1.9125334149442904e-16)
    sum a = (5.017947468014494e-25,-3.108271570443011e-26,6.453328890547058e-15)
    sum e = 1.2375071833585258e-09
    sum de = 2.1978983504417528e-11
Info: cfl dt = 0.0015531573975724798 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9688e+04 | 11520 |      1 | 3.880e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.409277032845385 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.209318067273534, dt = 0.0015531573975724798 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (2.2%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 276.38 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (59.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.510850694444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8119564549276252e-27,5.9164226840575964e-27,-1.8129878129359078e-16)
    sum a = (-2.9482812936420535e-25,7.039794079764735e-27,6.3637510153658815e-15)
    sum e = 1.2375411297316332e-09
    sum de = 2.173146759027098e-11
Info: cfl dt = 0.0015530970579494773 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6713e+04 | 11520 |      1 | 4.313e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.965316623264366 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.2108712246711066, dt = 0.0015530970579494773 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.72 us    (1.9%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.4%)
   LB compute        : 330.75 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.511024305555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.368076739318454e-28,5.949707762448919e-27,-1.7148482258365404e-16)
    sum a = (3.883259145654306e-25,-1.8163667278144754e-25,6.272822764405962e-15)
    sum e = 1.237574688584309e-09
    sum de = 2.148174765719645e-11
Info: cfl dt = 0.001552902152229355 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6579e+04 | 11520 |      1 | 4.334e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.900092081073323 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.2124243217290562, dt = 0.001552902152229355 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (2.0%)
   patch tree reduce : 1.75 us    (0.6%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 275.84 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.511024305555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.920479679266e-27,5.539191795622606e-27,-1.618143528120395e-16)
    sum a = (2.054854314488302e-25,-3.90123308798562e-25,6.1805974074213225e-15)
    sum e = 1.237607853705339e-09
    sum de = 2.1229910561452166e-11
Info: cfl dt = 0.0015527016950581567 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9780e+04 | 11520 |      1 | 3.868e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.451930540106817 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.2139772238812854, dt = 0.0015527016950581567 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.9%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 290.42 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.5114583333333345
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1055412479260882e-27,4.8083069492798136e-27,-1.522893372187797e-16)
    sum a = (2.1908793348475073e-25,1.2379830156345928e-25,6.0871207974740485e-15)
    sum e = 1.2376406218720391e-09
    sum de = 2.0976022924409192e-11
Info: cfl dt = 0.0015525000833361065 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6695e+04 | 11520 |      1 | 4.315e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.953063657901872 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.2155299255763437, dt = 0.0015525000833361065 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.8%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.4%)
   LB compute        : 325.31 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (73.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.511892361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.444026224796179e-27,5.428241534318198e-27,-1.4291165231831457e-16)
    sum a = (2.696202299958437e-25,5.980995736136762e-25,5.992438647768003e-15)
    sum e = 1.2376729900306038e-09
    sum de = 2.0720150203911046e-11
Info: cfl dt = 0.0015523015255100702 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9740e+04 | 11520 |      1 | 3.874e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.428589398778662 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.21708242565968, dt = 0.0015523015255100702 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (2.2%)
   patch tree reduce : 1.76 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.5%)
   LB compute        : 265.13 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.511892361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9212857081884244e-27,6.66949758266127e-27,-1.3368307768675347e-16)
    sum a = (4.380871067604579e-25,3.7112862406324726e-25,5.896596424667041e-15)
    sum e = 1.2377049553166456e-09
    sum de = 2.046235699255975e-11
Info: cfl dt = 0.0015521099480869413 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9558e+04 | 11520 |      1 | 3.897e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.338348298902961 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.21863472718519, dt = 0.0015521099480869413 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.0%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 307.13 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.512847222222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.712326399332201e-27,7.085561062552803e-27,-1.2460529973198722e-16)
    sum a = (-5.3025348882603025e-25,-2.3166414560360545e-25,5.79963933695857e-15)
    sum e = 1.2377365150440033e-09
    sum de = 2.0202707183218303e-11
Info: cfl dt = 0.001551928913424205 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9746e+04 | 11520 |      1 | 3.873e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.427899276055129 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.220186837133277, dt = 0.001551928913424205 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.9%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 303.35 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.512847222222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1290314985616307e-27,6.210440876514279e-27,-1.156799157869095e-16)
    sum a = (2.6306306955275314e-26,2.4868391568770174e-25,5.701612334933997e-15)
    sum e = 1.2377676666922407e-09
    sum de = 1.9941263826006326e-11
Info: cfl dt = 0.0015517615482382359 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9714e+04 | 11520 |      1 | 3.877e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.410444832926572 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.221738766046701, dt = 0.0015517615482382359 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (2.1%)
   patch tree reduce : 1.74 us    (0.6%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 263.23 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.512847222222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6234536004994022e-27,7.023151540569074e-27,-1.0690843847140418e-16)
    sum a = (-2.9721355998225013e-25,-2.2245527391533953e-25,5.602560109633554e-15)
    sum e = 1.237798407892737e-09
    sum de = 1.9678089222046265e-11
Info: cfl dt = 0.0015516104903516707 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6106e+04 | 11520 |      1 | 4.413e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.659328733337041 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.2232905275949393, dt = 0.0015516104903516707 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (2.0%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1.05 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 262.75 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513107638888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8908351563237285e-27,6.338033677014349e-27,-9.829230015054874e-17)
    sum a = (-1.221784277484149e-25,6.615964081581893e-25,5.5025271407553316e-15)
    sum e = 1.2378287364145956e-09
    sum de = 1.9413245026522118e-11
Info: cfl dt = 0.0015514778482553049 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6785e+04 | 11520 |      1 | 4.301e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.987592269223438 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.224842138085291, dt = 0.0015514778482553049 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.8%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 298.08 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513628472222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8119564549276252e-27,8.009221987912006e-27,-8.983285728450805e-17)
    sum a = (-1.9072349918227863e-25,5.475395395372572e-26,5.4015576783664195e-15)
    sum e = 1.2378586501504998e-09
    sum de = 1.914679210141248e-11
Info: cfl dt = 0.0015513651814799496 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9781e+04 | 11520 |      1 | 3.868e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.439064152250705 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.2263936159335462, dt = 0.0015513651814799496 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.7%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 323.42 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513628472222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4922810145442976e-27,7.627830464678101e-27,-8.153139471760515e-17)
    sum a = (-7.122562974697823e-25,-1.091750571235382e-25,5.29969574319492e-15)
    sum e = 1.237888147102545e-09
    sum de = 1.8878790775038245e-11
Info: cfl dt = 0.001551273494232329 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9741e+04 | 11520 |      1 | 3.873e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.41836098269785 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.227944981115026, dt = 0.001551273494232329 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.79 us    (2.4%)
   patch tree reduce : 1.74 us    (0.6%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 261.21 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (72.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513802083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.0511321858712406e-29,7.297753437297484e-27,-7.338912971364885e-17)
    sum a = (-8.978095144752755e-26,-3.5281073592188934e-25,5.196985087471261e-15)
    sum e = 1.237917225369323e-09
    sum de = 1.860930113315077e-11
Info: cfl dt = 0.0015512032465996037 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7657e+04 | 11520 |      1 | 4.165e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.407267552378757 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.2294962546092583, dt = 0.0015512032465996037 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (1.9%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 308.64 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.5139756944444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1759512298387e-28,6.541904782161201e-27,-6.540721573245868e-17)
    sum a = (1.5628453807339016e-25,4.289115201505833e-25,5.093469282338883e-15)
    sum e = 1.2379458831343794e-09
    sum de = 1.833838290633474e-11
Info: cfl dt = 0.0015511543812866658 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9782e+04 | 11520 |      1 | 3.868e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.436712268401083 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.231047457855858, dt = 0.0015511543812866658 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.5%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.3%)
   LB compute        : 359.41 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.48 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.5139756944444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.175647379868618e-28,7.884402943944547e-27,-5.758674556527496e-17)
    sum a = (-4.535868582646838e-25,-1.4248232556712171e-25,4.989191740457926e-15)
    sum e = 1.2379741186554572e-09
    sum de = 1.806609546340727e-11
Info: cfl dt = 0.0015511263644015318 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9744e+04 | 11520 |      1 | 3.873e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.418176632381757 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.2325986122371444, dt = 0.0015511263644015318 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (1.9%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 298.53 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.5139756944444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.741104123358032e-28,7.175708149862636e-27,-4.9928754002690915e-17)
    sum a = (4.59933213211296e-25,-2.0672252686237436e-25,4.884195757537011e-15)
    sum e = 1.2380019302552669e-09
    sum de = 1.7792497968846593e-11
Info: cfl dt = 0.0015511182391155498 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8336e+04 | 11520 |      1 | 4.065e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.73546342000544 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.234149738601546, dt = 0.0015511182391155498 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (2.1%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 288.07 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.5139756944444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0734437781201545e-27,6.780447843965679e-27,-4.2434219898105676e-17)
    sum a = (-7.008284205554282e-25,-3.7261535756472634e-25,4.7785244633649455e-15)
    sum e = 1.2380293163142199e-09
    sum de = 1.751764936565407e-11
Info: cfl dt = 0.0015511286897406204 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7003e+04 | 11520 |      1 | 4.266e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.08905096499072 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.2357008568406616, dt = 0.0015511286897406204 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.8%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 303.43 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513802083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.597197602831356e-28,6.100877493476176e-27,-3.510406784424928e-17)
    sum a = (2.9186575738737766e-25,-3.1955894260895805e-25,4.672220859729795e-15)
    sum e = 1.2380562752647323e-09
    sum de = 1.7241608494712078e-11
Info: cfl dt = 0.0015511561148106522 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9488e+04 | 11520 |      1 | 3.907e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.29387641113437 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.2372519855304023, dt = 0.0015511561148106522 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.7%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.4%)
   LB compute        : 313.62 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513802083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5865279666590287e-28,5.6459814221281e-27,-2.7939169173377074e-17)
    sum a = (3.980673475079577e-25,4.7242621263417244e-26,4.565327767347555e-15)
    sum e = 1.2380828055875868e-09
    sum de = 1.6964434155186427e-11
Info: cfl dt = 0.001551198706440028 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9671e+04 | 11520 |      1 | 3.883e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.382666568071198 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.2388031416452128, dt = 0.001551198706440028 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.9%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 305.77 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513802083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.520919298184574e-28,6.0044894539679706e-27,-2.0940342582696376e-17)
    sum a = (3.85241497301168e-25,-3.5712670108663086e-25,4.457887895474301e-15)
    sum e = 1.2381089058101092e-09
    sum de = 1.668618528249892e-11
Info: cfl dt = 0.001551254533083552 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9662e+04 | 11520 |      1 | 3.884e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.37841958371697 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.2403543403516526, dt = 0.001551254533083552 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (1.8%)
   patch tree reduce : 1.86 us    (0.5%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 352.47 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513802083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5338873625334509e-27,5.1841509594484984e-27,-1.4108354072456183e-17)
    sum a = (-4.0186184644456844e-25,-5.489818929342145e-26,4.349943872594847e-15)
    sum e = 1.2381345745063584e-09
    sum de = 1.640692087979762e-11
Info: cfl dt = 0.0015513216232437644 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9129e+04 | 11520 |      1 | 3.955e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.120689304221365 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.241905594884736, dt = 0.0015513216232437644 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.6%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 330.35 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513802083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.453326883099722e-28,5.304809368617043e-27,-7.443916409569258e-18)
    sum a = (-5.833764739385811e-26,1.1230385449232253e-25,4.2415382394579155e-15)
    sum e = 1.2381598102986085e-09
    sum de = 1.612669992945878e-11
Info: cfl dt = 0.0015513980475739021 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9702e+04 | 11520 |      1 | 3.879e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.399241994329333 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.24345691650798, dt = 0.0015513980475739021 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.7%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 303.47 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513628472222221
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.103712020002802e-28,5.6480617395275575e-27,-9.47688268346728e-19)
    sum a = (-2.0421505095689472e-25,-4.997643570195788e-25,4.132713428932539e-15)
    sum e = 1.2381846118600935e-09
    sum de = 1.584558140924113e-11
Info: cfl dt = 0.0015514819966426572 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9781e+04 | 11520 |      1 | 3.868e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.438088417338914 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.245008314555554, dt = 0.0015514819966426572 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (2.0%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 302.71 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.513194444444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.558486551362846e-29,4.351330560532281e-27,5.379726914996795e-18)
    sum a = (-7.7212505846964135e-25,5.707281441498786e-26,4.0235118027285116e-15)
    sum e = 1.2382089779190307e-09
    sum de = 1.5563624278370753e-11
Info: cfl dt = 0.001551571852083355 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9814e+04 | 11520 |      1 | 3.864e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.455181332844433 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.2465597965521966, dt = 0.001551571852083355 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.8%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 318.67 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.51 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.512934027777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5082301146068063e-27,4.854767371201035e-27,1.1537782395769447e-17)
    sum a = (-5.946934005916309e-27,3.257499671897441e-26,3.9139756073516225e-15)
    sum e = 1.2382329072635682e-09
    sum de = 1.5280887565656178e-11
Info: cfl dt = 0.0015516662486276252 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6615e+04 | 11520 |      1 | 4.328e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.904941613804352 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.24811136840428, dt = 0.0015516662486276252 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (2.1%)
   patch tree reduce : 1.80 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 268.66 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.512934027777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.46544416753237e-28,4.9067753061874764e-27,1.7525989605316603e-17)
    sum a = (-1.051031825336664e-25,2.3470418276334624e-25,3.804146938144054e-15)
    sum e = 1.2382563987475943e-09
    sum de = 1.4997430103409835e-11
Info: cfl dt = 0.0015517641256509328 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9484e+04 | 11520 |      1 | 3.907e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.296482450023845 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.2496630346529076, dt = 0.0015517641256509328 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (1.9%)
   patch tree reduce : 1.95 us    (0.5%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.69 us    (0.5%)
   LB compute        : 333.72 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.48 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.512934027777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1885546742234787e-27,5.43170872998396e-27,2.3343919632894768e-17)
    sum a = (2.551523159217488e-25,-3.6846581779194146e-25,3.694067706015281e-15)
    sum e = 1.2382794512963362e-09
    sum de = 1.4713310662611202e-11
Info: cfl dt = 0.0015518647659922538 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9288e+04 | 11520 |      1 | 3.933e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.202403424906661 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.2512147987785585, dt = 0.0015518647659922538 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.41 us    (2.5%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.5%)
   LB compute        : 273.19 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.68 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.38 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.512413194444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.179990324649583e-28,4.3527174387985854e-27,2.899120464707755e-17)
    sum a = (1.6924907610681032e-25,-3.3329458495844387e-25,3.5837795974751214e-15)
    sum e = 1.238302063912556e-09
    sum de = 1.4428587618963529e-11
Info: cfl dt = 0.0015519678214115506 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9683e+04 | 11520 |      1 | 3.881e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.39493152212963 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.2527666635445507, dt = 0.0015519678214115506 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.8%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1.37 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 282.17 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.511979166666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.981788272555985e-28,3.911690150113561e-27,3.4467539146475786e-17)
    sum a = (-1.1874451716104347e-25,-2.870505160467663e-25,3.4733240688009518e-15)
    sum e = 1.238324235681858e-09
    sum de = 1.414331925372887e-11
Info: cfl dt = 0.0015520733236036991 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9631e+04 | 11520 |      1 | 3.888e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.370753663689191 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.2543186313659622, dt = 0.0015520733236036991 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.8%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 286.44 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.48 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.511805555555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.170160636797415e-28,3.44985968743396e-27,3.977268106477992e-17)
    sum a = (3.0690506530719024e-25,-3.528440210002807e-25,3.362742300893907e-15)
    sum e = 1.2383459657784416e-09
    sum de = 1.3857563405578668e-11
Info: cfl dt = 0.0015521816807023369 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6535e+04 | 11520 |      1 | 4.341e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.870211552431023 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.255870704689566, dt = 0.0015521816807023369 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.8%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 288.70 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.511805555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0332243083973064e-28,2.897882137444526e-27,4.49064525556222e-17)
    sum a = (-2.9966278700054496e-26,4.043027521932655e-26,3.2520751633718265e-15)
    sum e = 1.2383672534693248e-09
    sum de = 1.3571377467936938e-11
Info: cfl dt = 0.0015522936595843157 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9726e+04 | 11520 |      1 | 3.875e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.418671635655475 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.2574228863702683, dt = 0.0015522936595843157 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (2.0%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 313.15 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (61.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.511284722222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.5587904013329266e-28,3.243214825754498e-27,4.9868740460254174e-17)
    sum a = (1.8669392437952914e-25,-7.134101801873483e-26,3.1413631771390737e-15)
    sum e = 1.2383880981180129e-09
    sum de = 1.3284818367450244e-11
Info: cfl dt = 0.0015524103544495688 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9573e+04 | 11520 |      1 | 3.895e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.345732372484422 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.2589751800298528, dt = 0.0015524103544495688 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.8%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.59 us    (0.5%)
   LB compute        : 291.22 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.511024305555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4409057486969924e-28,3.065694407667444e-27,5.465949642608597e-17)
    sum a = (1.136851852455624e-25,2.817027134518938e-25,3.030646484716838e-15)
    sum e = 1.238408499187198e-09
    sum de = 1.29979424517732e-11
Info: cfl dt = 0.0015524093126491945 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9793e+04 | 11520 |      1 | 3.867e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.453567693355218 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.2605275903843025, dt = 0.0015524093126491945 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.9%)
   patch tree reduce : 1.77 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.5%)
   LB compute        : 300.26 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.510677083333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.6336210577193864e-28,3.7584401016868465e-27,5.927836138257903e-17)
    sum a = (-1.7824159478553263e-26,3.266375692801793e-25,2.9199737363429396e-15)
    sum e = 1.238428454630223e-09
    sum de = 1.271082829559227e-11
Info: cfl dt = 0.0015522811681358108 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9753e+04 | 11520 |      1 | 3.872e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.434171073920767 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.262079999696952, dt = 0.0015522811681358108 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (2.0%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 281.85 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.510416666666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9138920075010508e-28,4.30764389514367e-27,6.372507692240303e-17)
    sum a = (-5.878699595214098e-26,1.648720882983514e-25,2.8093938381590473e-15)
    sum e = 1.2384479625399187e-09
    sum de = 1.2423555996172577e-11
Info: cfl dt = 0.0015521798347365777 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6219e+04 | 11520 |      1 | 4.394e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.718618051286374 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.2636322808650875, dt = 0.0015521798347365777 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.9%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 293.44 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.51015625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.737333077722188e-29,4.435930134776892e-27,6.799993583868205e-17)
    sum a = (2.9296971248735652e-25,-7.932943683265225e-26,2.698944264261558e-15)
    sum e = 1.2384670231582557e-09
    sum de = 1.2136176672794464e-11
Info: cfl dt = 0.0015521077680521553 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7583e+04 | 11520 |      1 | 4.176e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.379477521568663 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.265184460699824, dt = 0.0015521077680521553 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (2.1%)
   patch tree reduce : 1.80 us    (0.6%)
   gen split merge   : 941.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.5%)
   LB compute        : 267.63 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (71.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.509288194444443
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.529301337776422e-28,4.104812948696547e-27,7.21032693963657e-17)
    sum a = (2.9321935057529144e-25,1.2466371360163366e-25,2.5886620568031232e-15)
    sum e = 1.2384856367682131e-09
    sum de = 1.1848740619809588e-11
Info: cfl dt = 0.0015520669495883166 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7556e+04 | 11520 |      1 | 4.181e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.365452855371467 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.266736568467876, dt = 0.0015520669495883166 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 24.55 us   (7.4%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 294.80 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (63.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.509288194444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3071327659925654e-27,4.483430715397842e-27,7.603546128359217e-17)
    sum a = (5.046239784647118e-25,-2.292676199594302e-25,2.478583756517191e-15)
    sum e = 1.2385038037281038e-09
    sum de = 1.1561297333708714e-11
Info: cfl dt = 0.0015520588390879205 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6319e+04 | 11520 |      1 | 4.377e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.765438899003207 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.2682886354174645, dt = 0.0015520588390879205 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.0%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 295.14 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.50859375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2744803567403793e-27,3.844426554197763e-27,7.97969446652486e-17)
    sum a = (4.6732250061416965e-26,-3.419598003663182e-25,2.3687454197171856e-15)
    sum e = 1.2385215244620934e-09
    sum de = 1.1273895613129762e-11
Info: cfl dt = 0.0015520843414946648 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8277e+04 | 11520 |      1 | 4.074e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.714713340629684 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.2698406942565525, dt = 0.0015520843414946648 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (1.9%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 317.67 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.508333333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.926373911897797e-27,3.2116633451960567e-27,8.338819955882002e-17)
    sum a = (-1.0470376159297054e-25,-4.643989612287984e-25,2.2591826714738123e-15)
    sum e = 1.238538799451357e-09
    sum de = 1.0986583714069549e-11
Info: cfl dt = 0.0015521437873435779 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9689e+04 | 11520 |      1 | 3.880e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.399759424775699 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.271392778598047, dt = 0.0015521437873435779 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (2.0%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 298.01 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.507638888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6531588934356903e-27,2.384043739778483e-27,8.68097505939151e-17)
    sum a = (3.202024541245236e-25,-5.359452372309464e-26,2.1499307380409386e-15)
    sum e = 1.238555629226085e-09
    sum de = 1.0699409380122959e-11
Info: cfl dt = 0.0015522369265456052 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8825e+04 | 11520 |      1 | 3.996e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.98158393332355 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.2729449223853906, dt = 0.0015522369265456052 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.9%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 293.41 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505815972222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4769645836209252e-27,2.6173860080843174e-27,9.006216512004285e-17)
    sum a = (-1.9618225203845555e-25,-2.533355053928891e-25,2.0410244858539874e-15)
    sum e = 1.2385720143582524e-09
    sum de = 1.0412420043393067e-11
Info: cfl dt = 0.0015523629357620157 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9726e+04 | 11520 |      1 | 3.875e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.419090735446982 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.2744971593119363, dt = 0.0015523629357620157 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (1.9%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 304.59 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.505815972222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7814451330689128e-27,2.0893321081886473e-27,9.314605172988672e-17)
    sum a = (5.213996579739384e-25,8.01033149052505e-26,1.932498483197338e-15)
    sum e = 1.2385879554557296e-09
    sum de = 1.0125662840221905e-11
Info: cfl dt = 0.0015525204388094351 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9721e+04 | 11520 |      1 | 3.876e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.417868922913462 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.2760495222476984, dt = 0.0015525204388094351 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (2.2%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 981.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 256.66 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.5048611111111105
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.179071705937887e-27,2.454427811793467e-27,9.60620592508445e-17)
    sum a = (-5.68952939969008e-25,-2.7907457913724564e-26,1.824387004209361e-15)
    sum e = 1.2386034531573512e-09
    sum de = 9.839184848554935e-12
Info: cfl dt = 0.0015527075393974579 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9838e+04 | 11520 |      1 | 3.861e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.476406472742115 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.277602042686508, dt = 0.0015527075393974579 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.6%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 322.20 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.504427083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4517148252548732e-27,2.3296087678260072e-27,9.881087606682258e-17)
    sum a = (-6.083180926798122e-25,-3.549714922607927e-27,1.7167240747588449e-15)
    sum e = 1.2386185081296162e-09
    sum de = 9.553033117069227e-12
Info: cfl dt = 0.0015529218650912277 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9708e+04 | 11520 |      1 | 3.878e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.414911106367365 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.2791547502259055, dt = 0.0015529218650912277 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.8%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 327.96 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.503298611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.455346430505164e-28,2.346598026588245e-27,1.0139322989720087e-16)
    sum a = (1.73015837478095e-25,-2.1208697199644255e-25,1.609543492093665e-15)
    sum e = 1.2386331210644403e-09
    sum de = 9.267254770264897e-12
Info: cfl dt = 0.001553160621414243 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9728e+04 | 11520 |      1 | 3.875e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.42657727638291 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.2807076720909967, dt = 0.001553160621414243 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.8%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 316.66 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.50234375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3341768921855152e-27,1.8383071419874223e-27,1.0380988793309081e-16)
    sum a = (1.0986294874362554e-25,-1.0878673120897277e-25,1.502878850879478e-15)
    sum e = 1.2386472926783333e-09
    sum de = 8.981897065133323e-12
Info: cfl dt = 0.0015534206546105795 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6026e+04 | 11520 |      1 | 4.426e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.631896452248185 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.282260832712411, dt = 0.0015534206546105795 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (2.0%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 281.89 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501475694444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4243239794953473e-27,1.716608574119149e-27,1.0606165732084554e-16)
    sum a = (2.4517788743048243e-25,5.528429620276079e-25,1.3967635576248546e-15)
    sum e = 1.2386610237127695e-09
    sum de = 8.697007498710869e-12
Info: cfl dt = 0.0015536985214288197 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9697e+04 | 11520 |      1 | 3.879e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.416062165964396 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.2838142533670216, dt = 0.0015536985214288197 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.9%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 297.26 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.501215277777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.947870525025526e-27,3.17317747330609e-27,1.0814938595122686e-16)
    sum a = (-6.177710549429478e-26,3.37677120279968e-26,1.2912308477788027e-15)
    sum e = 1.2386743149358853e-09
    sum de = 8.412633791572524e-12
Info: cfl dt = 0.001553990563848557 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6365e+04 | 11520 |      1 | 4.369e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.80122602604923 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.28536795188845, dt = 0.001553990563848557 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (2.0%)
   patch tree reduce : 1.68 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 268.23 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.500086805555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6011509584492487e-27,2.784158119607507e-27,1.1007396349669036e-16)
    sum a = (1.3868782663051094e-25,1.4247677805405649e-25,1.1863137858126049e-15)
    sum e = 1.238687167145062e-09
    sum de = 8.128823933996643e-12
Info: cfl dt = 0.001554133213595279 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9796e+04 | 11520 |      1 | 3.866e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.469804098253423 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.286921942452299, dt = 0.001554133213595279 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.6%)
   patch tree reduce : 2.16 us    (0.6%)
   gen split merge   : 1.18 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.4%)
   LB compute        : 352.78 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.498697916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.03038978187068e-27,3.034489646675579e-27,1.118361330906362e-16)
    sum a = (5.760537566924902e-26,-2.1812821372446759e-26,1.0820560214571068e-15)
    sum e = 1.2386995798713176e-09
    sum de = 7.845655339323961e-12
Info: cfl dt = 0.001554042131394708 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9259e+04 | 11520 |      1 | 3.937e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.210319627072865 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.288476075665894, dt = 0.001554042131394708 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (2.2%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.55 us    (0.5%)
   LB compute        : 267.87 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (64.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.495746527777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.040444649301392e-27,2.9485031941646624e-27,1.1343667850949799e-16)
    sum a = (-1.3305155335624696e-25,3.472188427521472e-25,9.78506026177126e-16)
    sum e = 1.2387115522780499e-09
    sum de = 7.563219988818434e-12
Info: cfl dt = 0.001553962823318657 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9802e+04 | 11520 |      1 | 3.865e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.473046703103265 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.290030117797289, dt = 0.001553962823318657 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (2.2%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.5%)
   LB compute        : 259.34 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.39 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.495572916666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6777759826626058e-27,3.728622218961286e-27,1.1487677996906696e-16)
    sum a = (-2.1985903780081637e-25,4.1010545085948605e-25,8.7569498528576e-16)
    sum e = 1.2387230857508306e-09
    sum de = 7.281564302498806e-12
Info: cfl dt = 0.0015538965031765938 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9914e+04 | 11520 |      1 | 3.851e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.52680619106753 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.291584080620608, dt = 0.0015538965031765938 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.9%)
   patch tree reduce : 1.74 us    (0.6%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 270.49 us  (87.4%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.494010416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.243856445092395e-27,4.418247436881502e-27,1.1615763707685465e-16)
    sum a = (-5.057334810777559e-25,5.936948482398912e-26,7.736536341280018e-16)
    sum e = 1.2387341816750756e-09
    sum de = 7.000734088211298e-12
Info: cfl dt = 0.001553844259497505 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9937e+04 | 11520 |      1 | 3.848e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.537172344481993 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.2931379771237843, dt = 0.001553844259497505 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (2.3%)
   patch tree reduce : 1.90 us    (0.7%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.5%)
   LB compute        : 267.64 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.491666666666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4721105096888575e-28,4.2424606166273295e-27,1.1728049348560147e-16)
    sum a = (5.114141344565416e-25,-2.7675433179771716e-25,6.724121447137158e-16)
    sum e = 1.2387448415032215e-09
    sum de = 6.7207744041573855e-12
Info: cfl dt = 0.0015538070307117705 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9900e+04 | 11520 |      1 | 3.853e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.518677656897234 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.2946918213832816, dt = 0.0015538070307117705 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.9%)
   patch tree reduce : 1.99 us    (0.7%)
   gen split merge   : 1.36 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 286.00 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.490277777777776
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8420343773281174e-27,3.546941166075317e-27,1.1824663545003572e-16)
    sum a = (-2.506810203911811e-25,-2.5237855938913855e-25,5.720001366628359e-16)
    sum e = 1.238755066751304e-09
    sum de = 6.4417296331593896e-12
Info: cfl dt = 0.0015537855842182307 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9709e+04 | 11520 |      1 | 3.878e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.425513032882705 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.2962456284139936, dt = 0.0015537855842182307 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.0%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 293.08 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.35 us    (63.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.488281250000001
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.236323304019469e-28,3.2099297473631755e-27,1.1905739057481102e-16)
    sum a = (-4.706510084533019e-26,-3.121030850493018e-25,4.724466710777167e-16)
    sum e = 1.238764858995897e-09
    sum de = 6.163643514757584e-12
Info: cfl dt = 0.001553780498542101 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9878e+04 | 11520 |      1 | 3.856e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.507330633025864 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.2977994139982116, dt = 0.001553780498542101 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (2.3%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.54 us    (0.5%)
   LB compute        : 271.00 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.487847222222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.274748405915418e-28,2.681529127900929e-27,1.1971412662889176e-16)
    sum a = (6.600874846044494e-25,1.801832243583598e-26,3.737802738606175e-16)
    sum e = 1.2387742198712337e-09
    sum de = 5.886559161265692e-12
Info: cfl dt = 0.001553792149208884 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9499e+04 | 11520 |      1 | 3.905e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.323425172239139 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.299353194496754, dt = 0.0006468055032460285 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.8%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 287.61 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.63 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.487152777777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.876532974202457e-27,2.936714728901069e-27,1.198792368051395e-16)
    sum a = (3.641387576010695e-26,3.220886085666986e-26,3.332939683149986e-16)
    sum e = 1.2387778103349555e-09
    sum de = 5.771963302551391e-12
Info: cfl dt = 0.0015538088663039154 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8146e+04 | 11520 |      1 | 4.093e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.688967300618837 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 1155                                                    [SPH][rank=0]
Info: time since start : 542.3959646630001 (s)                                        [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[-2.85413180e-14 -9.28530773e-12 -8.94352030e-12 ... -5.44243053e-10
 -8.20557778e-09  1.19069578e-07]
(11520, 3)
[[-2.85413180e-14 -9.28530773e-12 -8.94352030e-12  1.51307090e-09
  -8.98369736e-11]
 [ 5.97660771e-06  5.79401693e-06  2.20816857e-06 -1.37697662e-09
  -6.58857781e-08]
 [ 2.84133334e-05  3.45710885e-05  3.91389833e-05  3.22977149e-05
  -1.89068268e-07]
 ...
 [ 3.48760414e-05  4.35161984e-05  5.30745868e-05  5.74822665e-05
   2.44773434e-05]
 [ 1.43588154e-05  1.61807625e-05  1.41936105e-05  1.06222449e-06
  -1.93845873e-07]
 [ 5.59058800e-07  1.08908980e-07 -5.44243053e-10 -8.20557778e-09
   1.19069578e-07]]
compute original rho
Info: Dumping state to _to_trash/dusty_settle/dump/0000023.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.71 us   (71.3%)
Info: dump to _to_trash/dusty_settle/dump/0000023.sham                      [Shamrock Dump][rank=0]
              - took 1.23 ms, bandwidth = 2.41 GB/s
Info: evolve_until (target_time = 2.40s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 2.3, dt = 0.0015538088663039154 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.75 us    (1.1%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 319.98 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.486892361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7264900817665727e-27,2.979707955156527e-27,1.203840185455615e-16)
    sum a = (-4.36278617501196e-25,-4.1348943382927052e-25,2.356123934655754e-16)
    sum e = 1.2387867434981462e-09
    sum de = 5.495920832506993e-12
Info: cfl dt = 0.0015538374747443818 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4305e+04 | 11520 |      1 | 4.740e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.801447759238284 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.301553808866304, dt = 0.0015538374747443818 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.4%)
   patch tree reduce : 1.88 us    (0.5%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 370.75 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 10.39 us   (2.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.485503472222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.733293982911306e-28,1.9665933816206448e-27,1.2067423266344162e-16)
    sum a = (3.1904857140695777e-25,-2.1447795012755255e-25,1.3920517280181493e-16)
    sum e = 1.238795068774344e-09
    sum de = 5.221433308345162e-12
Info: cfl dt = 0.0015538898285701638 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9914e+04 | 11520 |      1 | 3.851e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.525255712824931 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.3031076463410485, dt = 0.0015538898285701638 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (1.9%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 313.26 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.48454861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8074491005621337e-27,1.8507890463841685e-27,1.2081564158948314e-16)
    sum a = (2.0674471691463526e-25,-4.226095453084929e-25,4.377733630743096e-17)
    sum e = 1.2388029690239644e-09
    sum de = 4.948088683594753e-12
Info: cfl dt = 0.0015539585444488387 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8435e+04 | 11520 |      1 | 4.051e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.807794254858687 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.3046615361696188, dt = 0.0015539585444488387 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (2.0%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 291.35 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.483072916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9939842273801707e-27,1.0020195474054415e-27,1.2080952758301222e-16)
    sum a = (1.24597143444851e-25,1.313762044105504e-25,-5.06435610506401e-17)
    sum e = 1.2388104457479164e-09
    sum de = 4.675929601931729e-12
Info: cfl dt = 0.0015540430736398672 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9638e+04 | 11520 |      1 | 3.887e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.392811556984283 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.3062154947140674, dt = 0.0015540430736398672 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (2.0%)
   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.19 us    (0.4%)
   LB compute        : 295.51 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.481597222222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.118109832214478e-27,1.6143263019791472e-27,1.2065746222773576e-16)
    sum a = (-1.4525608209973192e-25,2.5658357429257567e-25,-1.440317133891108e-16)
    sum e = 1.2388175008559732e-09
    sum de = 4.404996365123227e-12
Info: cfl dt = 0.0015541426372364376 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6029e+04 | 11520 |      1 | 4.426e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.640924906445246 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.307769537787707, dt = 0.0015541426372364376 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.9%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 1.09 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 286.52 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.480034722222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7100209023541998e-27,2.1163762343815966e-27,1.2036105179514975e-16)
    sum a = (-1.7503513223383524e-25,3.0229508194999206e-25,-2.363617757161622e-16)
    sum e = 1.23882413630276e-09
    sum de = 4.1353288648438325e-12
Info: cfl dt = 0.0015542562708304444 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9995e+04 | 11520 |      1 | 3.841e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.567813582936257 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.3093236804249435, dt = 0.0015542562708304444 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (1.8%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 308.03 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.4788194444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.401440488101313e-27,2.628134314648182e-27,1.1992193797979588e-16)
    sum a = (-1.2992275598746263e-25,-2.229600976042746e-25,-3.276088705447893e-16)
    sum e = 1.2388303540888624e-09
    sum de = 3.8669666163608034e-12
Info: cfl dt = 0.001554382844045347 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9983e+04 | 11520 |      1 | 3.842e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.56274213828867 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.310877936695774, dt = 0.001554382844045347 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.7%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 318.46 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.4776041666666675
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2741944071678191e-27,1.9069576161695253e-27,1.1934179768704948e-16)
    sum a = (2.2170081213846957e-25,-3.6245231362924248e-25,-4.177485914006048e-16)
    sum e = 1.2388361562608102e-09
    sum de = 3.5999487851526536e-12
Info: cfl dt = 0.0015544038498161194 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9906e+04 | 11520 |      1 | 3.852e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.526718155876578 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.3124323195398193, dt = 0.0015544038498161194 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (2.1%)
   patch tree reduce : 1.67 us    (0.6%)
   gen split merge   : 1.03 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 269.22 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.4765625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8875413204412537e-27,1.1788465263593429e-27,1.1862239185054125e-16)
    sum a = (3.026279327339053e-25,5.481497659744314e-26,-5.067502786278188e-16)
    sum e = 1.2388415444890933e-09
    sum de = 3.33433427068946e-12
Info: cfl dt = 0.0015544322353744017 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8345e+04 | 11520 |      1 | 4.064e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.768722585355182 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.3139867233896356, dt = 0.0015544322353744017 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.8%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 311.55 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.475520833333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3764159093138047e-27,1.6545457717019953e-27,1.1776551059956718e-16)
    sum a = (2.0001003605345764e-25,8.415022568632881e-26,-5.945906150198148e-16)
    sum e = 1.238846521028656e-09
    sum de = 3.070161630873525e-12
Info: cfl dt = 0.0015544675931592343 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9997e+04 | 11520 |      1 | 3.840e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.571492138419943 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.31554115562501, dt = 0.0015544675931592343 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (1.9%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 322.50 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.4736979166666675
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6173860080843174e-27,1.8036351853297944e-27,1.1677296783210083e-16)
    sum a = (-4.588237105982519e-25,-2.0964606624774553e-25,-6.812467717140893e-16)
    sum e = 1.2388510881561145e-09
    sum de = 2.807468990960932e-12
Info: cfl dt = 0.0015545013448068077 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9870e+04 | 11520 |      1 | 3.857e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.510106807531855 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.317095623218169, dt = 0.0015545013448068077 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (1.8%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 325.36 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.473263888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4333386882263304e-27,1.217679117815886e-27,1.1564661671566956e-16)
    sum a = (1.3784460464459743e-25,-1.917220515340183e-26,-7.666960119416491e-16)
    sum e = 1.2388552481775957e-09
    sum de = 2.546295337047981e-12
Info: cfl dt = 0.0015545351391214556 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9554e+04 | 11520 |      1 | 3.898e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.356894045293906 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.318650124562976, dt = 0.0015545351391214556 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 22.11 us   (6.3%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 313.60 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.471527777777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0726895689929857e-27,1.3105999616583283e-27,1.1438834534468498e-16)
    sum a = (-4.9028920470418225e-26,-1.0700597951503701e-25,-8.509162824401894e-16)
    sum e = 1.2388590034672604e-09
    sum de = 2.286678739785887e-12
Info: cfl dt = 0.0015545700477237261 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9833e+04 | 11520 |      1 | 3.862e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.49258216360121 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.3202046597020973, dt = 0.0015545700477237261 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (2.3%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.5%)
   LB compute        : 264.85 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.39 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.471267361111112
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.891355235673593e-27,1.1628974262968342e-27,1.1300007469380605e-16)
    sum a = (1.8062702540357744e-25,-2.304839121989798e-25,-9.338861852931417e-16)
    sum e = 1.2388623564600863e-09
    sum de = 2.028656467027491e-12
Info: cfl dt = 0.0015546044454443297 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9688e+04 | 11520 |      1 | 3.880e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.422728785580947 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.321759229749821, dt = 0.0015546044454443297 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (1.9%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 312.33 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.469531249999999
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2949368111683797e-27,6.885850592204867e-28,1.11483759815692e-16)
    sum a = (-3.70795773279334e-26,-1.934833869322258e-26,-1.01558482861228e-15)
    sum e = 1.2388653096442154e-09
    sum de = 1.7722654310808495e-12
Info: cfl dt = 0.0015546366741114495 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9986e+04 | 11520 |      1 | 3.842e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.567846425554265 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.3233138341952655, dt = 0.0015546366741114495 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.8%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 299.63 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.468229166666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1444605192742752e-27,7.856665378618444e-28,1.098413898584536e-16)
    sum a = (8.766180145661335e-26,-2.343380469010417e-25,-1.0959918485743958e-15)
    sum e = 1.2388678655627254e-09
    sum de = 1.517542177893153e-12
Info: cfl dt = 0.0015546650973167755 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9854e+04 | 11520 |      1 | 3.859e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.503681900964192 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.3248684708693768, dt = 0.0015546650973167755 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (2.0%)
   patch tree reduce : 2.29 us    (0.7%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 290.39 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.4664062499999995
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.350411941820584e-27,2.4270369660339414e-28,1.0807498773352622e-16)
    sum a = (-6.466181228820942e-26,-1.6143263019791472e-27,-1.1750874114263907e-15)
    sum e = 1.238870026814798e-09
    sum de = 1.2645229294323066e-12
Info: cfl dt = 0.0015546881548049662 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9929e+04 | 11520 |      1 | 3.849e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.540610753397305 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.3264231359666936, dt = 0.0015546881548049662 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.9%)
   patch tree reduce : 1.72 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 269.96 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.464322916666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.11325575828241e-27,4.195306755572956e-28,1.061866096986429e-16)
    sum a = (-8.492410375892706e-25,6.726914342886302e-26,-1.2528522221642494e-15)
    sum e = 1.2388717960569759e-09
    sum de = 1.013243503355346e-12
Info: cfl dt = 0.0015547044148107878 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0014e+04 | 11520 |      1 | 3.838e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.581961823477672 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.3279778241214983, dt = 0.0015547044148107878 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.0%)
   patch tree reduce : 1.76 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        : 302.92 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.462847222222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8168105288596932e-28,6.143870719731634e-28,1.0417834480270326e-16)
    sum a = (-5.356401240123593e-25,-2.830341165875467e-26,-1.3292675390080554e-15)
    sum e = 1.2388731760041136e-09
    sum de = 7.637393191530967e-13
Info: cfl dt = 0.001554712622721558 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9651e+04 | 11520 |      1 | 3.885e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.405940404844857 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.3295325285363093, dt = 0.001554712622721558 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.8%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 286.95 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.4609375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.592014709730233e-28,4.777795627421102e-28,1.0205231416558376e-16)
    sum a = (-2.7254099562468227e-25,3.512685272897581e-26,-1.4043151864889732e-15)
    sum e = 1.2388741694302627e-09
    sum de = 5.160453396872651e-13
Info: cfl dt = 0.0015547117444385825 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9811e+04 | 11520 |      1 | 3.864e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.483410339553398 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.331087241159031, dt = 0.0015547117444385825 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (2.2%)
   patch tree reduce : 1.86 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.5%)
   LB compute        : 264.33 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.54 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.458854166666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.164673893726211e-28,5.658463326524846e-28,9.98106700899002e-17)
    sum a = (-4.779945288733874e-25,3.7378865657802044e-25,-1.47797757780759e-15)
    sum e = 1.238874779169182e-09
    sum de = 2.701960382368737e-13
Info: cfl dt = 0.0015546861174323581 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0006e+04 | 11520 |      1 | 3.839e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.578578144944192 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.3326419529034697, dt = 0.0015546861174323581 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (2.0%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.5%)
   LB compute        : 265.78 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.456597222222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.494014612377179e-27,1.4499812274219918e-27,9.745561697532942e-17)
    sum a = (3.842831644191512e-25,-2.467478336279398e-25,-1.5502370420647273e-15)
    sum e = 1.2388750081104575e-09
    sum de = 2.622767056271414e-14
Info: cfl dt = 0.0015546625917740133 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8833e+04 | 11520 |      1 | 3.995e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.008408000081717 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.334196639020902, dt = 0.0015546625917740133 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (2.3%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 258.52 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.455555555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.06298142112885e-28,5.512841108562809e-28,9.498935104466864e-17)
    sum a = (-5.965254667814199e-25,-2.5894681485835955e-25,-1.6210778344591634e-15)
    sum e = 1.2388748592222422e-09
    sum de = -2.1582846351321817e-13
Info: cfl dt = 0.0015546472402280735 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7803e+04 | 11520 |      1 | 4.143e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.507547909755298 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.335751301612676, dt = 0.0015546472402280735 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (2.0%)
   patch tree reduce : 1.80 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 287.24 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (71.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.454253472222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.952724598957594e-27,2.094186182120715e-28,9.241408009817995e-17)
    sum a = (1.1879721853516305e-25,6.91636191406358e-25,-1.6904850736727777e-15)
    sum e = 1.23887433551116e-09
    sum de = -4.559425808333998e-13
Info: cfl dt = 0.0015546062449539883 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7834e+04 | 11520 |      1 | 4.139e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.52247803574628 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.337305948852904, dt = 0.0015546062449539883 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (2.1%)
   patch tree reduce : 1.74 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 275.97 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (64.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.453732638888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1743391719938513e-27,1.9749146512184756e-27,8.973208955915286e-17)
    sum a = (2.5831994588198966e-25,-1.4563331298816692e-25,-1.7584429806288832e-15)
    sum e = 1.2388734400375632e-09
    sum de = -6.940802886918488e-13
Info: cfl dt = 0.001554554262026545 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0043e+04 | 11520 |      1 | 3.835e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.59509316687774 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.338860555097858, dt = 0.001554554262026545 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (2.0%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 267.06 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.451909722222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.927456940194021e-28,1.1192107609082232e-27,8.694567063581652e-17)
    sum a = (1.0110897312670769e-25,6.118906910938142e-27,-1.8249371255446143e-15)
    sum e = 1.2388721759310701e-09
    sum de = -9.302102407146523e-13
Info: cfl dt = 0.001554493092849715 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6996e+04 | 11520 |      1 | 4.267e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.11477385776072 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.3404151093598844, dt = 0.001554493092849715 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.9%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 294.60 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (72.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.450954861111112
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.539131025628591e-28,1.2162922395495808e-27,8.405713410102661e-17)
    sum a = (-2.781412100640223e-25,-1.430814569781655e-25,-1.8899537983386092e-15)
    sum e = 1.2388705463716844e-09
    sum de = -1.1643020289707034e-12
Info: cfl dt = 0.0015544237927126484 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9138e+04 | 11520 |      1 | 3.954e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.15445337804662 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.341969602452734, dt = 0.0015544237927126484 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (2.2%)
   patch tree reduce : 1.85 us    (0.7%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 260.81 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.449826388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.351512870514329e-27,9.000839948320159e-28,8.106881096539922e-17)
    sum a = (2.208021150219038e-25,1.4808531376299434e-25,-1.9534799749484625e-15)
    sum e = 1.2388685545906018e-09
    sum de = -1.39632608751217e-12
Info: cfl dt = 0.0015543476816018513 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5044e+04 | 11520 |      1 | 4.600e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.165164594386606 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.3435240262454466, dt = 0.0015543476816018513 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (2.0%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 267.42 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.448437499999999
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.240952198372992e-28,1.339030966117583e-27,7.79830505951616e-17)
    sum a = (-3.226544548993511e-25,1.7539849433960716e-25,-2.0155033435359364e-15)
    sum e = 1.2388662038676014e-09
    sum de = -1.62625377482198e-12
Info: cfl dt = 0.001554266308929856 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5899e+04 | 11520 |      1 | 4.448e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.579782341934187 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.3450783739270484, dt = 0.001554266308929856 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (2.2%)
   patch tree reduce : 1.90 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 259.23 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (62.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.447135416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5671724409247735e-27,1.656626089101453e-27,7.480221871316143e-17)
    sum a = (5.31706937249118e-25,3.329339966092045e-25,-2.0760122886911914e-15)
    sum e = 1.2388634975278015e-09
    sum de = -1.854057334028916e-12
Info: cfl dt = 0.0015541814107653783 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8047e+04 | 11520 |      1 | 4.107e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.622432116803434 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.3466326402359785, dt = 0.0015541814107653783 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.9%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 287.88 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.445225694444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.403338495518722e-29,2.2190052260881748e-27,7.152869549811402e-17)
    sum a = (-3.7200513112755207e-25,-1.1364912641063848e-25,-2.1349958906587988e-15)
    sum e = 1.2388604389384499e-09
    sum de = -2.0797099188515404e-12
Info: cfl dt = 0.001554094861396288 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0018e+04 | 11520 |      1 | 3.838e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.579165346077884 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.348186821646744, dt = 0.001554094861396288 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.9%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 1.38 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.61 us    (0.5%)
   LB compute        : 301.22 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.444184027777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.366421811877109e-27,1.6808964587617923e-27,6.816487374640889e-17)
    sum a = (1.9070130913001774e-25,-3.0099696389273048e-25,-2.1924439197451375e-15)
    sum e = 1.2388570315055423e-09
    sum de = -2.303185633486413e-12
Info: cfl dt = 0.001554008620541449 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9955e+04 | 11520 |      1 | 3.846e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.547910468013697 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.34974091650814, dt = 0.001554008620541449 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (2.0%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 275.90 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.4421875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.991314110438072e-28,1.1268385913729013e-27,6.471315715181492e-17)
    sum a = (-4.720822668241288e-25,6.28921556204041e-26,-2.24834682310182e-15)
    sum e = 1.2388532786703796e-09
    sum de = -2.5244594976894653e-12
Info: cfl dt = 0.0015539246777726686 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9936e+04 | 11520 |      1 | 3.848e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.537627692654073 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.351294925128682, dt = 0.0015539246777726686 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (2.1%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 1.05 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 269.60 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.441319444444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8622307920811855e-27,1.5200185798703999e-27,6.11759587424297e-17)
    sum a = (3.4328010847584065e-26,4.422532890724385e-25,-2.3026957240078024e-15)
    sum e = 1.2388491839063377e-09
    sum de = -2.743507460963033e-12
Info: cfl dt = 0.0015538449958302566 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7991e+04 | 11520 |      1 | 4.116e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.592500929917058 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.3528488498064544, dt = 0.0015538449958302566 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (1.9%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 305.26 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.439409722222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4243239794953473e-27,2.452694213960586e-27,5.755569946547562e-17)
    sum a = (1.789405814317504e-25,2.488974949407127e-25,-2.355482401909518e-15)
    sum e = 1.2388447507157396e-09
    sum de = -2.9603063608996974e-12
Info: cfl dt = 0.0015537714545249856 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9955e+04 | 11520 |      1 | 3.846e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.545219125063724 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.3544026948022845, dt = 0.0015537714545249856 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.8%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 303.30 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.437413194444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0561077997913408e-27,2.703025741028658e-27,5.385480698991913e-17)
    sum a = (-8.392277765065477e-26,9.415100486465495e-26,-2.4066992768209177e-15)
    sum e = 1.2388399826271039e-09
    sum de = -3.1748339015901133e-12
Info: cfl dt = 0.0015537057969202664 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7677e+04 | 11520 |      1 | 4.162e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.438511018763664 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.3559564662568095, dt = 0.0015537057969202664 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (2.1%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 992.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 261.44 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.434982638888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.399013451135279e-27,2.7633549456129304e-27,5.007571471308314e-17)
    sum a = (-2.692984742380609e-25,1.2538697061751177e-25,-2.4563393979983764e-15)
    sum e = 1.2388348831927012e-09
    sum de = -3.3870686367639563e-12
Info: cfl dt = 0.0015536495793229907 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9905e+04 | 11520 |      1 | 3.852e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.520001970822719 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.35751017205373, dt = 0.0015536495793229907 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.79 us    (2.3%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.5%)
   LB compute        : 270.72 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.433506944444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8972494683053895e-27,2.9623719768277136e-27,4.6220860968800535e-17)
    sum a = (1.3447171670094339e-25,-2.4312392071808457e-25,-2.504396433398999e-15)
    sum e = 1.238829455986511e-09
    sum de = -3.596989911654379e-12
Info: cfl dt = 0.0015536041263358488 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9975e+04 | 11520 |      1 | 3.843e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.55310944362773 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.359063821633053, dt = 0.0015536041263358488 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (2.0%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 293.74 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.432031250000001
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.332703334027566e-27,2.366707761449669e-27,4.229268843939442e-17)
    sum a = (5.942274094941524e-25,2.0490432945524838e-25,-2.5508646531199166e-15)
    sum e = 1.2388237046026937e-09
    sum de = -3.804577807225584e-12
Info: cfl dt = 0.0015535704927679668 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9975e+04 | 11520 |      1 | 3.843e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.552966619604113 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.360617425759389, dt = 0.0015535704927679668 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (2.0%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 291.86 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.430381944444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.468625413625574e-29,3.008138959615782e-27,3.829364377426998e-17)
    sum a = (-1.1656434452641183e-25,2.263565624784558e-25,-2.595738907866305e-15)
    sum e = 1.2388176326545883e-09
    sum de = -4.009813095167245e-12
Info: cfl dt = 0.0015535494330595554 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9977e+04 | 11520 |      1 | 3.843e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.553652777453227 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.362170996252157, dt = 0.0015535494330595554 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (2.0%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 299.81 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.4296875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.448689038547438e-28,3.313945617336058e-27,3.42261774068077e-17)
    sum a = (-5.163625161107183e-26,1.723126901970783e-25,-2.6390146030589622e-15)
    sum e = 1.2388112437741912e-09
    sum de = -4.212677197527393e-12
Info: cfl dt = 0.0015535413792418316 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9893e+04 | 11520 |      1 | 3.854e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.512569801250338 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.3637245456852165, dt = 0.0015535413792418316 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (2.1%)
   patch tree reduce : 1.92 us    (0.7%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 272.24 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.428385416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.504164169199642e-28,3.5656640226704356e-27,3.0092743554524254e-17)
    sum a = (-3.006752081349477e-26,4.52428814912319e-25,-2.6806876941848765e-15)
    sum e = 1.2388045416121186e-09
    sum de = -4.4131521192705986e-12
Info: cfl dt = 0.00155354642804135 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7255e+04 | 11520 |      1 | 4.227e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.231944953108119 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.3652780870644583, dt = 0.00155354642804135 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (1.9%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.61 us    (0.5%)
   LB compute        : 305.23 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.4274305555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.739066675555069e-28,4.521223148154656e-27,2.5895800326599934e-17)
    sum a = (3.2153385726017655e-26,-1.3369229111527992e-25,-2.7207546630416175e-15)
    sum e = 1.238797529838108e-09
    sum de = -4.611220421337586e-12
Info: cfl dt = 0.00155356433748263 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9943e+04 | 11520 |      1 | 3.847e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.536731356745918 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.3668316334924997, dt = 0.00155356433748263 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (1.8%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (0.4%)
   LB compute        : 316.52 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.426562499999999
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.86446656886641e-28,3.8277840150021014e-27,2.163780996293764e-17)
    sum a = (-2.194596168601205e-25,-3.779520651334684e-26,-2.7592125051239802e-15)
    sum e = 1.2387902121418745e-09
    sum de = -4.8068651471762054e-12
Info: cfl dt = 0.0015535945330928467 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9243e+04 | 11520 |      1 | 3.939e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.196933908951344 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.368385197829982, dt = 0.0015535945330928467 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.8%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.51 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 299.45 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.42595486111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3398977650340237e-27,3.858295336860814e-27,1.7321239133245966e-17)
    sum a = (-7.058655624186484e-26,-3.5728203145245705e-25,-2.7960587317110907e-15)
    sum e = 1.2387825922344244e-09
    sum de = -5.000069798106221e-12
Info: cfl dt = 0.0015536361235413175 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9479e+04 | 11520 |      1 | 3.908e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.31176168257224 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.369938792363075, dt = 0.0015536361235413175 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.0%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 292.64 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.425
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3135470779742266e-27,3.046971551072325e-27,1.2948559236344142e-17)
    sum a = (-2.8662890505380954e-25,3.3386597880416156e-25,-2.8312913578179197e-15)
    sum e = 1.2387746738496088e-09
    sum de = -5.190818259992512e-12
Info: cfl dt = 0.0015536839539164612 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9928e+04 | 11520 |      1 | 3.849e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.530452328709087 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.3714924284866163, dt = 0.0015536839539164612 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.99 us    (2.7%)
   patch tree reduce : 3.26 us    (1.0%)
   gen split merge   : 1.82 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 299.94 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.42421875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.945096768492916e-27,4.1141743769941066e-27,8.52225794458113e-18)
    sum a = (-8.172596247682748e-26,2.6795597607627757e-25,-2.8649088018708602e-15)
    sum e = 1.2387664607666027e-09
    sum de = -5.3790943180474936e-12
Info: cfl dt = 0.0015537421982278043 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9902e+04 | 11520 |      1 | 3.853e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.51819016451492 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.373046112440533, dt = 0.0015537421982278043 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.8%)
   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.30 us    (0.4%)
   LB compute        : 316.09 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.4234375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.939375895644407e-27,4.527464100353029e-27,4.044812802938012e-18)
    sum a = (-6.613745076355805e-25,2.729099052435194e-26,-2.8969100975398236e-15)
    sum e = 1.2387579567647212e-09
    sum de = -5.564882853799128e-12
Info: cfl dt = 0.001553809268553102 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9982e+04 | 11520 |      1 | 3.842e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.55742790514444 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.3745998546387606, dt = 0.001553809268553102 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (2.2%)
   patch tree reduce : 1.87 us    (0.7%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 263.32 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.39 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.422048611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.4313101906221286e-27,4.3180454821409575e-27,-4.8129383842043335e-19)
    sum a = (-1.4046303081138147e-25,-2.0028463795018604e-25,-2.927294754347967e-15)
    sum e = 1.2387491656489277e-09
    sum de = -5.748169082734302e-12
Info: cfl dt = 0.0015538832625530425 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9952e+04 | 11520 |      1 | 3.846e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.543428580073128 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.3761536639073135, dt = 0.0015538832625530425 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.8%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 304.39 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.421267361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.267831914981414e-27,3.83541184546678e-27,-5.0535741423064446e-18)
    sum a = (4.857180539384406e-25,1.9081225939132216e-25,-2.9560627519952967e-15)
    sum e = 1.2387400912535939e-09
    sum de = -5.928938541434884e-12
Info: cfl dt = 0.0015539621170635248 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9843e+04 | 11520 |      1 | 3.860e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.491495569209064 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.3777075471698668, dt = 0.0015539621170635248 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (1.7%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 334.43 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.420399305555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.979075286017391e-27,4.4435579652415704e-27,-9.66953472955561e-18)
    sum a = (1.917220515340183e-26,3.1084657334002937e-25,-2.9832145459956562e-15)
    sum e = 1.238730737444509e-09
    sum de = -6.107177103974411e-12
Info: cfl dt = 0.0015540429528830711 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9842e+04 | 11520 |      1 | 3.860e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.491867747128154 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.3792615092869305, dt = 0.0015540429528830711 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (2.1%)
   patch tree reduce : 1.77 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.5%)
   LB compute        : 268.36 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.418836805555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.319033821045431e-27,5.008710858760902e-27,-1.4326674701027807e-17)
    sum a = (2.7167280982997523e-25,1.0450959863568782e-25,-3.00875105696088e-15)
    sum e = 1.2387211081248951e-09
    sum de = -6.282870834731011e-12
Info: cfl dt = 0.0015541197867563234 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9998e+04 | 11520 |      1 | 3.840e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.568186175177232 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.3808155522398136, dt = 0.0015541197867563234 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (2.0%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 270.48 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.417187500000001
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7225028067509456e-27,5.023273080557106e-27,-1.9022476670019036e-17)
    sum a = (1.27415280081983e-25,3.7123402681148644e-25,-3.032673654525788e-15)
    sum e = 1.2387112072569063e-09
    sum de = -6.456005725416064e-12
Info: cfl dt = 0.0015541939098940097 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0030e+04 | 11520 |      1 | 3.836e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.58445251591158 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.3823696720265697, dt = 0.0015541939098940097 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (2.0%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.5%)
   LB compute        : 270.97 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.415972222222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.637903232506334e-27,5.812406814084713e-27,-2.3754428885499447e-17)
    sum a = (1.4730866193386348e-25,1.366407943094446e-25,-3.0549842786874757e-15)
    sum e = 1.238701038819431e-09
    sum de = -6.626568507198707e-12
Info: cfl dt = 0.0015542634477955267 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9908e+04 | 11520 |      1 | 3.852e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.525901212960898 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.3839238659364637, dt = 0.0015542634477955267 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.8%)
   patch tree reduce : 1.55 us    (0.5%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 301.19 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.415104166666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3383375269844304e-27,5.754851366033051e-27,-2.8520016801557724e-17)
    sum a = (3.2883438445400665e-25,-2.080788938068208e-25,-3.0756853889126942e-15)
    sum e = 1.238690606825681e-09
    sum de = -6.794546299299407e-12
Info: cfl dt = 0.0015543266845208742 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9550e+04 | 11520 |      1 | 3.899e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.352421566678592 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.3854781293842593, dt = 0.0015543266845208742 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.8%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 301.34 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.414149305555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.558486551362845e-28,5.232691698769177e-27,-3.3316724164414083e-17)
    sum a = (5.152530134976742e-26,3.486611961491045e-26,-3.0947799618953237e-15)
    sum e = 1.2386799153232932e-09
    sum de = -6.9599266685270386e-12
Info: cfl dt = 0.0015543821114367587 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9896e+04 | 11520 |      1 | 3.853e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.521353535337585 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.38703245606878, dt = 0.0015543821114367587 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (1.7%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 347.42 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.412326388888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.973102382994057e-28,5.4705413214405036e-27,-3.8142034377763096e-17)
    sum a = (3.463035030963858e-25,-2.855013730233035e-25,-3.1122715018640082e-15)
    sum e = 1.2386689683931888e-09
    sum de = -7.12269765405353e-12
Info: cfl dt = 0.001554428470112022 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9844e+04 | 11520 |      1 | 3.860e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.496687109064728 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.388586838180217, dt = 0.001554428470112022 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.9%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 275.99 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.410850694444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.790216761823831e-29,4.757685892559677e-27,-4.299343207561568e-17)
    sum a = (3.9040068445182305e-25,4.720496751848706e-25,-3.1281640505656373e-15)
    sum e = 1.2386577701478953e-09
    sum de = -7.282847791538201e-12
Info: cfl dt = 0.0015544647881544122 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9988e+04 | 11520 |      1 | 3.842e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.566732524549314 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.3901412666503288, dt = 0.0015544647881544122 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.9%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 303.64 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.410329861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.436562803916029e-28,6.0745268064163786e-27,-4.786840485894808e-17)
    sum a = (1.3182555296883325e-25,-1.958098752239526e-25,-3.1424621963009584e-15)
    sum e = 1.2386463247293348e-09
    sum de = -7.440366209168249e-12
Info: cfl dt = 0.0015544904067848304 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6070e+04 | 11520 |      1 | 4.419e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.663823254689524 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.391695731438483, dt = 0.0015544904067848304 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (2.1%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 300.92 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.41015625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.679266500519422e-28,5.2340785770354825e-27,-5.276444517867203e-17)
    sum a = (-2.17157398938054e-25,5.759705439965119e-26,-3.1551710555698516e-15)
    sum e = 1.2386346363059269e-09
    sum de = -7.595242623808354e-12
Info: cfl dt = 0.0015545049994345273 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9647e+04 | 11520 |      1 | 3.886e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.40209769570571 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.393250221845268, dt = 0.0015545049994345273 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (2.1%)
   patch tree reduce : 1.76 us    (0.6%)
   gen split merge   : 1.32 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.5%)
   LB compute        : 271.25 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.409374999999999
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.131449585328905e-29,5.5918931697422e-27,-5.767905225871343e-17)
    sum a = (3.5427527937110756e-25,-2.2757285471800537e-26,-3.166296280135225e-15)
    sum e = 1.238622709069361e-09
    sum de = -7.747467329527914e-12
Info: cfl dt = 0.0015545085807948918 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9955e+04 | 11520 |      1 | 3.846e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.55167201966089 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.3948047268447024, dt = 0.0015545085807948918 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (2.2%)
   patch tree reduce : 1.86 us    (0.7%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (0.5%)
   LB compute        : 264.81 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.408940972222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.687344690141189e-28,5.464993808375283e-27,-6.260973410400128e-17)
    sum a = (4.6556948648556e-25,1.6381736737682635e-25,-3.175844061575256e-15)
    sum e = 1.2386105472310767e-09
    sum de = -7.897031264418426e-12
Info: cfl dt = 0.001554501506112279 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8026e+04 | 11520 |      1 | 4.110e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.614479212994539 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.3963592354254972, dt = 0.001554501506112279 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.7%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 314.01 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.408246527777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7332511133148103e-27,5.851239405541256e-27,-6.755400953497372e-17)
    sum a = (-7.315782854759452e-26,-2.2216125572288282e-25,-3.183821131297507e-15)
    sum e = 1.2385981550182995e-09
    sum de = -8.043926079416032e-12
Info: cfl dt = 0.001554484460716537 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6548e+04 | 11520 |      1 | 4.339e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.89661116348313 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.3979137369316095, dt = 0.001554484460716537 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.0%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 301.29 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.407291666666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2225331917479539e-27,5.2368523335680925e-27,-7.250941019272665e-17)
    sum a = (9.959172830336989e-26,5.164457288066966e-26,-3.1902347479309805e-15)
    sum e = 1.238585536669802e-09
    sum de = -8.188144097442459e-12
Info: cfl dt = 0.001554458440125943 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9904e+04 | 11520 |      1 | 3.852e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.526679676275341 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.399468221392326, dt = 0.0005317786076739495 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (1.8%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.4%)
   LB compute        : 323.70 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.40642361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4132289533649063e-27,5.503132960698674e-27,-7.421089371879414e-17)
    sum a = (-1.0926936484564694e-25,-3.0346838096328616e-25,-3.1920503649148892e-15)
    sum e = 1.238581069361287e-09
    sum de = -8.235671171717809e-12
Info: cfl dt = 0.0015544438522102277 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7519e+04 | 11520 |      1 | 4.186e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.573194754376594 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 1220                                                    [SPH][rank=0]
Info: time since start : 571.232027289 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[-3.42221951e-15 -3.98962430e-12  4.96172941e-12 ... -1.76343424e-10
 -5.23891262e-09  1.81302209e-07]
(11520, 3)
[[-3.42221951e-15 -3.98962430e-12  4.96172941e-12 -1.60535006e-12
  -8.51737739e-11]
 [ 5.68005369e-06  4.86020879e-06 -2.65041897e-08 -6.80263316e-10
  -2.50783026e-08]
 [ 2.81952537e-05  3.38344900e-05  3.63349438e-05  2.25183879e-05
  -1.23825329e-07]
 ...
 [ 3.49025839e-05  4.33944731e-05  5.20470520e-05  5.06484603e-05
   1.78727656e-06]
 [ 1.40424948e-05  1.51200274e-05  1.08585774e-05 -1.95619445e-08
  -1.38526975e-07]
 [ 4.45310793e-07 -1.78539790e-10 -1.76343424e-10 -5.23891262e-09
   1.81302209e-07]]
compute original rho
Info: Dumping state to _to_trash/dusty_settle/dump/0000024.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.66 us   (69.4%)
Info: dump to _to_trash/dusty_settle/dump/0000024.sham                      [Shamrock Dump][rank=0]
              - took 1.20 ms, bandwidth = 2.46 GB/s
Info: evolve_until (target_time = 2.50s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 2.4, dt = 0.0015544438522102277 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.30 us    (1.2%)
   patch tree reduce : 1.25 us    (0.5%)
   gen split merge   : 782.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 259.73 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.40625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1195574804747996e-27,4.894986840923883e-27,-7.917323953777608e-17)
    sum a = (5.298485203722692e-25,2.159369460637055e-25,-3.196398569482432e-15)
    sum e = 1.2385682557549551e-09
    sum de = -8.377490588409353e-12
Info: cfl dt = 0.0015544117037830803 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5949e+04 | 11520 |      1 | 4.440e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.604956247612158 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.40155444385221, dt = 0.0015544117037830803 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.9%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 288.32 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.405468749999999
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4849391336521795e-27,5.664704278723219e-27,-8.414513840375693e-17)
    sum a = (-1.0678962650549342e-25,1.0083021059518036e-25,-3.199181633434616e-15)
    sum e = 1.2385551234425347e-09
    sum de = -8.515408628232504e-12
Info: cfl dt = 0.001554370082047684 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4435e+04 | 11520 |      1 | 4.714e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.869613892542777 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.403108855555993, dt = 0.001554370082047684 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (2.0%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.5%)
   LB compute        : 291.75 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.404947916666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8996765052714233e-27,5.71393845717705e-27,-8.912001363577122e-17)
    sum a = (-2.325448133027092e-25,-7.131328045340872e-26,-3.2004292124925508e-15)
    sum e = 1.238541780140088e-09
    sum de = -8.650634508641404e-12
Info: cfl dt = 0.0015543246510235633 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9832e+04 | 11520 |      1 | 3.862e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.490747029892203 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.404663225638041, dt = 0.0015543246510235633 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (1.8%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 315.51 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.404079861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3757832401746684e-27,5.4996657650329106e-27,-9.40954892542881e-17)
    sum a = (1.1334540007031766e-25,1.6062824080345775e-26,-3.200150606253816e-15)
    sum e = 1.2385282291349896e-09
    sum de = -8.783158911864215e-12
Info: cfl dt = 0.001554277311459427 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9837e+04 | 11520 |      1 | 3.861e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.492378276414922 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.4062175502890644, dt = 0.001554277311459427 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.7%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 327.35 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.403124999999999
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.805715502729252e-27,5.548206504353589e-27,-9.906919421264753e-17)
    sum a = (-1.3256198532824127e-25,4.293220361174096e-26,-3.1983556537324648e-15)
    sum e = 1.2385144746624657e-09
    sum de = -8.912978152457888e-12
Info: cfl dt = 0.0015542300613004395 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8584e+04 | 11520 |      1 | 4.030e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.883636583438376 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.407771827600524, dt = 0.0015542300613004395 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (2.0%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 270.10 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 us    (59.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.401041666666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3896520228377195e-27,5.662623961323761e-27,-1.0403877978940135e-16)
    sum a = (-2.9384344579512874e-25,-1.141927826910301e-25,-3.1950546243553595e-15)
    sum e = 1.2385005209415148e-09
    sum de = -9.040089284438253e-12
Info: cfl dt = 0.001554184923614406 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8465e+04 | 11520 |      1 | 4.047e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.825321869661803 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.4093260576618243, dt = 0.001554184923614406 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (2.2%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.63 us    (0.5%)
   LB compute        : 278.94 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.400347222222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.435687054800827e-28,5.3540435470708746e-27,-1.0900192023687302e-16)
    sum a = (6.989394923567207e-25,2.0886386690554945e-26,-3.1902582003730064e-15)
    sum e = 1.238486372176292e-09
    sum de = -9.164490052376791e-12
Info: cfl dt = 0.0015541438904585552 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8164e+04 | 11520 |      1 | 4.090e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.678752730802824 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.4108802425854385, dt = 0.0015541438904585552 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (2.0%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 295.59 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3993923611111105
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7120404497596413e-27,5.482329786704097e-27,-1.1395631326331417e-16)
    sum a = (4.289059726375181e-26,3.4388756115648227e-25,-3.1839774638480187e-15)
    sum e = 1.2384720325543746e-09
    sum de = -9.28617885728128e-12
Info: cfl dt = 0.0015541088678448984 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9817e+04 | 11520 |      1 | 3.864e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.48110766399538 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.4124343864758973, dt = 0.0015541088678448984 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (2.0%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 296.93 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.51 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.399218749999999
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.25298374361265e-27,6.2666094462996364e-27,-1.1889968029095274e-16)
    sum a = (9.138695647990887e-26,-2.683304332081799e-25,-3.1762238825844044e-15)
    sum e = 1.2384575062456457e-09
    sum de = -9.405154758739342e-12
Info: cfl dt = 0.0015540816234741826 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7869e+04 | 11520 |      1 | 4.134e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.534949711356484 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.4139884953437423, dt = 0.0015540816234741826 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (2.1%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 270.33 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.38 us    (60.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.398871527777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4395188704306873e-27,5.3803942341306716e-27,-1.2382976650356837e-16)
    sum a = (5.272897299709362e-25,2.674566999004077e-25,-3.1670092867791045e-15)
    sum e = 1.2384427974017562e-09
    sum de = -9.521417430591085e-12
Info: cfl dt = 0.001554063738662354 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9505e+04 | 11520 |      1 | 3.904e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.32920945189641 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.4155425769672165, dt = 0.001554063738662354 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.7%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 320.83 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.397743055555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.60345645542725e-27,6.195185215584923e-27,-1.287443406796677e-16)
    sum a = (4.6931544468285e-25,3.765651868671633e-25,-3.1563458693032738e-15)
    sum e = 1.2384279101562691e-09
    sum de = -9.634967068764391e-12
Info: cfl dt = 0.0015540565657484163 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9825e+04 | 11520 |      1 | 3.863e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.484305252561393 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.417096640705879, dt = 0.0015540565657484163 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.8%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.5%)
   LB compute        : 281.75 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.397569444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.28059976895072e-27,6.88377027480541e-27,-1.3364119488621724e-16)
    sum a = (-2.3182224972596422e-25,4.678522881118982e-25,-3.144246202868595e-15)
    sum e = 1.2384128486255717e-09
    sum de = -9.745804474057387e-12
Info: cfl dt = 0.00155406119210066 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9891e+04 | 11520 |      1 | 3.854e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.516163996517685 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.4186506972716275, dt = 0.00155406119210066 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (2.2%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.5%)
   LB compute        : 270.63 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.396788194444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.387796885016806e-27,7.704108769324882e-27,-1.3851814410576164e-16)
    sum a = (2.0217633990542622e-25,-5.103712020002802e-27,-3.130723216615619e-15)
    sum e = 1.2383976169100033e-09
    sum de = -9.85393091050734e-12
Info: cfl dt = 0.0015540784116363916 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9366e+04 | 11520 |      1 | 3.923e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.261452454155261 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.4202047584637283, dt = 0.0015540784116363916 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.9%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 302.38 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.395920138888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.002877396123122e-27,7.310928780827384e-27,-1.4337302569497546e-16)
    sum a = (-4.304259912173885e-25,-2.45871326563635e-25,-3.115790185984539e-15)
    sum e = 1.238382219095877e-09
    sum de = -9.95934809191895e-12
Info: cfl dt = 0.0015541087045498282 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8486e+04 | 11520 |      1 | 4.044e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.834117122135014 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.4217588368753646, dt = 0.0015541087045498282 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (2.0%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 301.42 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.395920138888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8697978525518474e-27,6.727053030712933e-27,-1.4820369879442985e-16)
    sum a = (-1.4230757890556726e-25,-7.74710199558034e-26,-3.0994607307694766e-15)
    sum e = 1.2383666592577867e-09
    sum de = -1.0062058205710294e-11
Info: cfl dt = 0.0015541522257096659 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8252e+04 | 11520 |      1 | 4.078e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.72097659390821 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.4233129455799145, dt = 0.0015541522257096659 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (2.0%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 302.75 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 us    (62.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.395312499999999
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8333922980613384e-27,6.749936522106966e-27,-1.5300804371382831e-16)
    sum a = (-4.1310249479297137e-25,-1.8340632944925287e-25,-3.081748806140566e-15)
    sum e = 1.23835094146115e-09
    sum de = -1.016206385766377e-11
Info: cfl dt = 0.00155420880197696 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9803e+04 | 11520 |      1 | 3.865e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.474364737136488 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.4248670978056244, dt = 0.00155420880197696 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.9%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 295.06 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.394357638888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.013053803541866e-27,6.4032169555306894e-27,-1.5778396131977206e-16)
    sum a = (6.531974733774456e-25,6.261200621061046e-26,-3.062668713118724e-15)
    sum e = 1.238335069765082e-09
    sum de = -1.0259368007441209e-11
Info: cfl dt = 0.0015542779383428346 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8930e+04 | 11520 |      1 | 3.982e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.051217963261724 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.4264213066076015, dt = 0.0015542779383428346 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.7%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 336.61 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3936631944444455
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.8631494107928816e-27,6.711797369783576e-27,-1.6252937250885717e-16)
    sum a = (-1.9116175271443104e-25,3.134344881849547e-25,-3.042235092875156e-15)
    sum e = 1.2383190482255127e-09
    sum de = -1.0353974041443813e-11
Info: cfl dt = 0.0015543588326093686 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9779e+04 | 11520 |      1 | 3.869e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.463906960795489 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.427975584545944, dt = 0.0015543588326093686 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.94 us    (2.1%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 315.70 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.392621527777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9204189092719838e-27,7.358082641881758e-27,-1.672422177334955e-16)
    sum a = (-3.2767634110164186e-25,-1.659344370503411e-25,-3.0204629113049673e-15)
    sum e = 1.2383028808980402e-09
    sum de = -1.0445885718349658e-11
Info: cfl dt = 0.0015544503983339953 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9779e+04 | 11520 |      1 | 3.869e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.46467283897531 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.4295299433785535, dt = 0.0015544503983339953 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (2.1%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.5%)
   LB compute        : 268.29 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.392274305555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2807213089387524e-27,6.701395782786288e-27,-1.7192045661822628e-16)
    sum a = (-9.76639675132058e-26,-2.3798692361969044e-25,-2.9973674823839677e-15)
    sum e = 1.238286571840862e-09
    sum de = -1.0535107097554592e-11
Info: cfl dt = 0.0015545512950930678 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8445e+04 | 11520 |      1 | 4.050e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.817782625512061 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.4310843937768873, dt = 0.0015545512950930678 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (1.9%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.5%)
   LB compute        : 298.10 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.60 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (71.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.391753472222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2897360176697355e-27,6.307522355155637e-27,-1.7656206777041294e-16)
    sum a = (-3.6603635378894144e-25,2.1230748564078503e-25,-2.97296446388648e-15)
    sum e = 1.2382701251176374e-09
    sum de = -1.0621642587761908e-11
Info: cfl dt = 0.0015546599652680967 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9882e+04 | 11520 |      1 | 3.855e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.51641896936936 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.4326389450719805, dt = 0.0015546599652680967 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (1.9%)
   patch tree reduce : 1.80 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 306.03 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.390625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5692527583242312e-27,6.949646992454903e-27,-1.8116504872862904e-16)
    sum a = (7.219394815251246e-26,-2.462055642258145e-25,-2.9472698515169573e-15)
    sum e = 1.2382535447998408e-09
    sum de = -1.0705496916498624e-11
Info: cfl dt = 0.0015547746762693854 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9765e+04 | 11520 |      1 | 3.870e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.4606136715407 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 2.434193605037249, dt = 0.0015547746762693854 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.44 us    (2.2%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 266.24 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.390190972222221
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0036923752443065e-27,6.242339076639297e-27,-1.85727416065498e-16)
    sum a = (8.307747534734181e-26,-1.96388896900135e-25,-2.920299983454063e-15)
    sum e = 1.2382368349688506e-09
    sum de = -1.0786675158260735e-11
Info: cfl dt = 0.0015548935669854461 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8554e+04 | 11520 |      1 | 4.034e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.873353982071336 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.435748379713518, dt = 0.0015548935669854461 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.6%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 319.00 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.389236111111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1434203605745464e-27,5.976058449508716e-27,-1.902472056896442e-16)
    sum a = (-2.4940439894704725e-25,-1.281433911717932e-25,-2.8920715560542607e-15)
    sum e = 1.2382199997174457e-09
    sum de = -1.0865182711841979e-11
Info: cfl dt = 0.001555014697135346 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9855e+04 | 11520 |      1 | 3.859e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.50684827291317 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.4373032732805036, dt = 0.001555014697135346 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.8%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 311.04 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3882812499999995
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4992154058758232e-27,5.842918135943425e-27,-1.9472247336366443e-16)
    sum a = (8.153457327607737e-27,2.37534801304875e-25,-2.8626016289853925e-15)
    sum e = 1.2382030431508743e-09
    sum de = -1.0941025330160343e-11
Info: cfl dt = 0.0015551360981331255 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9818e+04 | 11520 |      1 | 3.863e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.490013396709342 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.438858287977639, dt = 0.0015551360981331255 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (1.9%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.4%)
   LB compute        : 322.16 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.388107638888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7183421719520306e-27,6.501685312438353e-27,-1.9915129540688672e-16)
    sum a = (-4.9085782479336734e-26,-3.1329025284525898e-25,-2.8319076347535353e-15)
    sum e = 1.2381859693872334e-09
    sum de = -1.1014209176531124e-11
Info: cfl dt = 0.0015552558240354937 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9784e+04 | 11520 |      1 | 3.868e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.474404980935573 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.4404134240757718, dt = 0.0015552558240354937 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (2.0%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.5%)
   LB compute        : 269.47 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.388107638888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.612939423712842e-27,5.535724599956844e-27,-2.0353176958017654e-16)
    sum a = (-6.458414710529633e-26,-3.088466948800174e-25,-2.800007380820997e-15)
    sum e = 1.2381687825571344e-09
    sum de = -1.1084740737492277e-11
Info: cfl dt = 0.0015551778826235314 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9898e+04 | 11520 |      1 | 3.853e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.530858012868052 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.4419686798998073, dt = 0.0015551778826235314 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.6%)
   patch tree reduce : 2.15 us    (0.6%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 325.12 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.99 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.387760416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.458995936152975e-27,5.092616993872361e-27,-2.0786147260207882e-16)
    sum a = (-3.337730579603191e-25,1.0123379217067514e-25,-2.7669232991408983e-15)
    sum e = 1.2381514889545996e-09
    sum de = -1.1152618191744625e-11
Info: cfl dt = 0.0015549553903290681 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9863e+04 | 11520 |      1 | 3.858e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.513128333149117 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.4435238577824308, dt = 0.0015549553903290681 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.7%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 308.19 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.387586805555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.36432359408013e-28,5.596053804541116e-27,-2.121381890844126e-16)
    sum a = (-4.1949184296583905e-25,1.609916029092297e-25,-2.732677491351279e-15)
    sum e = 1.2381340943386512e-09
    sum de = -1.1217844160339138e-11
Info: cfl dt = 0.0015547205008905642 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9783e+04 | 11520 |      1 | 3.868e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.472432276768014 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.44507881317276, dt = 0.0015547205008905642 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (2.1%)
   patch tree reduce : 1.93 us    (0.7%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.54 us    (0.5%)
   LB compute        : 268.08 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.387239583333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.905206117939123e-29,5.909488292726071e-27,-2.1636011345079567e-16)
    sum a = (-1.614243089283169e-25,9.54394147740524e-26,-2.697289703223677e-15)
    sum e = 1.2381166030035216e-09
    sum de = -1.1280428005893152e-11
Info: cfl dt = 0.0015544768614120196 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8758e+04 | 11520 |      1 | 4.006e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.9721074467936 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 2.4466335336736504, dt = 0.0015544768614120196 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.9%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 299.79 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.386892361111112
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.708147864135766e-30,5.946934005916309e-27,-2.2052547882307653e-16)
    sum a = (-3.061506035303203e-25,3.9430335989320564e-26,-2.660779920311497e-15)
    sum e = 1.23809901917825e-09
    sum de = -1.134037947820052e-11
Info: cfl dt = 0.0015542283156026588 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9781e+04 | 11520 |      1 | 3.868e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.467028143566713 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.4481880105350626, dt = 0.0015542283156026588 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.8%)
   patch tree reduce : 1.75 us    (0.6%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 295.92 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.386631944444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.296427329025196e-28,5.972591253842953e-27,-2.2463256151085904e-16)
    sum a = (4.587266291196105e-25,-5.541535619892662e-25,-2.623168334757174e-15)
    sum e = 1.2380813470324055e-09
    sum de = -1.1397709009694883e-11
Info: cfl dt = 0.0015539788081648312 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9228e+04 | 11520 |      1 | 3.941e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.195872620434988 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.449742238850665, dt = 0.0015539788081648312 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.7%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 328.76 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.385677083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.017604027503853e-28,4.652283144320489e-27,-2.2867968101724956e-16)
    sum a = (2.0001558356652286e-26,-2.296490114826641e-25,-2.584475347269354e-15)
    sum e = 1.238063590672634e-09
    sum de = -1.1452427622867302e-11
Info: cfl dt = 0.0015537322866144658 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9847e+04 | 11520 |      1 | 3.860e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.49444383966347 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.4512962176588298, dt = 0.0015537322866144658 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (1.9%)
   patch tree reduce : 2.15 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 318.28 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.385503472222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.592014709730233e-28,4.529544417752487e-27,-2.326651997671954e-16)
    sum a = (-1.108892386606913e-25,7.686079351862915e-27,-2.544721529695729e-15)
    sum e = 1.2380457541408674e-09
    sum de = -1.1504546926761186e-11
Info: cfl dt = 0.00155349260485452 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6902e+04 | 11520 |      1 | 4.282e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.061976415674945 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.452849949945444, dt = 0.00155349260485452 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.6%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 325.20 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (72.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.385243055555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1857809176908684e-28,4.718159861969982e-27,-2.3658752244997125e-16)
    sum a = (1.042072591736333e-25,1.0258461160205632e-25,-2.5039275742660238e-15)
    sum e = 1.2380278414136711e-09
    sum de = -1.1554078942131162e-11
Info: cfl dt = 0.0015532634311231064 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6411e+04 | 11520 |      1 | 4.362e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.821639097240228 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.4544034425502987, dt = 0.0015532634311231064 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.00 us    (2.1%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.52 us    (0.4%)
   LB compute        : 315.94 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (61.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.384722222222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.108626863928886e-28,4.988601123899478e-27,-2.4044509503087867e-16)
    sum a = (-5.152086333931524e-25,-6.102819123049003e-26,-2.4621142977135092e-15)
    sum e = 1.2380098564032162e-09
    sum de = -1.1601036195574845e-11
Info: cfl dt = 0.0015530481626841123 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9783e+04 | 11520 |      1 | 3.868e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.456330246405596 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.455956705981422, dt = 0.0015530481626841123 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (2.1%)
   patch tree reduce : 1.92 us    (0.7%)
   gen split merge   : 1.05 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 265.75 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.383767361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.570907685765576e-28,4.7819562622200166e-27,-2.442364036011689e-16)
    sum a = (2.505978076952028e-25,2.4300880982198127e-25,-2.4193026160398074e-15)
    sum e = 1.237991802958998e-09
    sum de = -1.1645431629453276e-11
Info: cfl dt = 0.0015528498493751377 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9886e+04 | 11520 |      1 | 3.855e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.50464650601522 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.4575097541441058, dt = 0.0015528498493751377 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.9%)
   patch tree reduce : 1.74 us    (0.6%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 293.04 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.383333333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.569460037505254e-29,5.4005039689920955e-27,-2.4795997300193814e-16)
    sum a = (1.9458734203220467e-25,1.636516354240029e-25,-2.375513524931974e-15)
    sum e = 1.237973684870901e-09
    sum de = -1.1687278505116191e-11
Info: cfl dt = 0.001552671127660258 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9795e+04 | 11520 |      1 | 3.866e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.458587404596136 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.459062603993481, dt = 0.001552671127660258 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.0%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.5%)
   LB compute        : 300.85 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.383072916666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.8589887759939667e-28,5.600907878473184e-27,-2.5161436532365796e-16)
    sum a = (1.7876306101366337e-25,-3.467195665762773e-27,-2.3307681033142576e-15)
    sum e = 1.2379555058733485e-09
    sum de = -1.172659043740655e-11
Info: cfl dt = 0.0015525141683265318 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9700e+04 | 11520 |      1 | 3.879e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.41053147256066 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.460615275121141, dt = 0.0015525141683265318 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.6%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.3%)
   LB compute        : 343.19 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3824652777777775
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.254820981036043e-28,5.4476578300464696e-27,-2.551981783656202e-16)
    sum a = (3.0148514504246985e-25,-2.3415497896988944e-25,-2.285087529002017e-15)
    sum e = 1.2379372696500757e-09
    sum de = -1.1763381385629235e-11
Info: cfl dt = 0.0015523806342341696 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7636e+04 | 11520 |      1 | 4.168e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.407926768274429 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.4621677892894676, dt = 0.0015523806342341696 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (1.9%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 308.43 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.382118055555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2086644090849027e-27,4.897760597456493e-27,-2.5871004412322982e-16)
    sum a = (-2.0579054466741734e-25,3.006530180826868e-25,-2.2384930797794164e-15)
    sum e = 1.2379189798395698e-09
    sum de = -1.1797665523672632e-11
Info: cfl dt = 0.0015522716540681111 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9668e+04 | 11520 |      1 | 3.883e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.392672757192683 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.4637201699237017, dt = 0.0015522716540681111 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.8%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.4%)
   LB compute        : 317.64 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.381770833333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.829803562407543e-28,5.7416760225031525e-27,-2.621486273184133e-16)
    sum a = (2.0239824042803503e-25,-8.714033522848263e-26,-2.191006128926529e-15)
    sum e = 1.237900640041282e-09
    sum de = -1.1829457252248233e-11
Info: cfl dt = 0.001552187810048202 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9698e+04 | 11520 |      1 | 3.879e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.406031563438052 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.4652724415777696, dt = 0.001552187810048202 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.9%)
   patch tree reduce : 18.70 us   (6.0%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.5%)
   LB compute        : 275.68 us  (88.0%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.381510416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1136632478430028e-27,5.329079738277382e-27,-2.6551262399938193e-16)
    sum a = (-4.799708304028722e-25,7.749321000806429e-26,-2.142648155840442e-15)
    sum e = 1.2378822538219719e-09
    sum de = -1.1858771212235743e-11
Info: cfl dt = 0.0015521291397792667 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9892e+04 | 11520 |      1 | 3.854e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.49925799978106 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.4668246293878178, dt = 0.0015521291397792667 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.8%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 314.00 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.380815972222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5810412235878246e-28,5.6106160263373196e-27,-2.6880076031011573e-16)
    sum a = (-5.847910897702124e-26,1.6773183128347251e-25,-2.093440759786055e-15)
    sum e = 1.237863824722101e-09
    sum de = -1.1885622211484671e-11
Info: cfl dt = 0.001552095151859731 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7291e+04 | 11520 |      1 | 4.221e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.237453039771939 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.468376758527597, dt = 0.001552095151859731 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (2.0%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 267.60 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.380815972222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.17709502812894e-29,5.919889879723359e-27,-2.720117914480745e-16)
    sum a = (-2.6809466390290804e-25,2.1295793154768213e-25,-2.0434056799962614e-15)
    sum e = 1.2378453562623092e-09
    sum de = -1.1910025254150586e-11
Info: cfl dt = 0.0015520848544866791 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9877e+04 | 11520 |      1 | 3.856e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.491133707735122 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.469928853679457, dt = 0.0015520848544866791 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.7%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.59 us    (0.5%)
   LB compute        : 315.01 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.380381944444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.204260694309923e-28,6.323471455218146e-27,-2.751445008527522e-16)
    sum a = (-2.177010552184456e-25,2.702193614068875e-26,-1.9925648067879593e-15)
    sum e = 1.2378268519494824e-09
    sum de = -1.1931995515373389e-11
Info: cfl dt = 0.0015520967959908648 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9583e+04 | 11520 |      1 | 3.894e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.348735164926701 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.4714809385339436, dt = 0.0015520967959908648 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.0%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.5%)
   LB compute        : 310.47 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.380381944444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.203384945194722e-28,6.15635262412838e-27,-2.7819769963045484e-16)
    sum a = (1.0140160444089807e-25,-4.390440527642085e-25,-1.940940187026796e-15)
    sum e = 1.2378083152824463e-09
    sum de = -1.1951548315753855e-11
Info: cfl dt = 0.0015521291159507843 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7473e+04 | 11520 |      1 | 4.193e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.32546675883202 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.4730330353299346, dt = 0.0015521291159507843 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.6%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 324.31 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3798611111111105
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.8728575586570178e-28,5.172015774618329e-27,-2.8117022620386455e-16)
    sum a = (1.1541323556537858e-25,-2.0938533313368017e-25,-1.8885540234409177e-15)
    sum e = 1.2377897497571187e-09
    sum de = -1.1968699191224369e-11
Info: cfl dt = 0.0015521796052904659 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9944e+04 | 11520 |      1 | 3.847e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.523869655637636 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.474585164445885, dt = 0.0015521796052904659 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (1.8%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 331.23 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3798611111111105
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8861544421749486e-28,4.970918426004088e-27,-2.8406094619763857e-16)
    sum a = (4.341067661361623e-26,-5.323948288692053e-26,-1.8354287015910833e-15)
    sum e = 1.2377711588707237e-09
    sum de = -1.1983463792748342e-11
Info: cfl dt = 0.0015522457735687438 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9781e+04 | 11520 |      1 | 3.868e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.445447390052653 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.4761373440511756, dt = 0.0015522457735687438 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (1.7%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 349.71 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.379427083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7093274632210473e-28,5.0302074718886315e-27,-2.8686875262165477e-16)
    sum a = (1.0834986455508666e-25,4.92006159997868e-25,-1.7815867938260795e-15)
    sum e = 1.2377525461254895e-09
    sum de = -1.1995857961231398e-11
Info: cfl dt = 0.0015523249215038143 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7463e+04 | 11520 |      1 | 4.195e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.321850964071437 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.4776895898247444, dt = 0.0015523249215038143 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.7%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 317.19 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.379427083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.854073932067882e-29,6.1702214067914314e-27,-2.8959256626452985e-16)
    sum a = (-5.57588859454904e-25,5.238239211834398e-26,-1.727051058277923e-15)
    sum e = 1.237733915031164e-09
    sum de = -1.2005897763968875e-11
Info: cfl dt = 0.001552414216677123 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9784e+04 | 11520 |      1 | 3.868e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.448409030103253 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.479241914746248, dt = 0.001552414216677123 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (2.1%)
   patch tree reduce : 1.71 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 267.18 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (49.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.378993055555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.291530385496633e-27,5.927170990621461e-27,-2.9223133628973317e-16)
    sum a = (1.6067678154277843e-25,-2.4214617154033945e-25,-1.6718444455105028e-15)
    sum e = 1.2377152691065444e-09
    sum de = -1.2013599462050305e-11
Info: cfl dt = 0.0015525107703026643 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9398e+04 | 11520 |      1 | 3.919e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.261681738004828 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.4807943289629253, dt = 0.0015525107703026643 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (2.0%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1.53 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 294.91 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.378993055555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.114113607000091e-28,5.352656668804569e-27,-2.9478404103230934e-16)
    sum a = (-7.365710472346435e-26,3.259219400947659e-25,-1.6159900977337589e-15)
    sum e = 1.2376966118801226e-09
    sum de = -1.201897956361738e-11
Info: cfl dt = 0.00155261171295297 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6739e+04 | 11520 |      1 | 4.308e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.97274971800618 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.482346839733228, dt = 0.00155261171295297 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (1.8%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 334.38 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.37873263888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.213786532192009e-28,6.2638356897670264e-27,-2.972496889484792e-16)
    sum a = (-1.2877234046556256e-25,-5.584764615453392e-25,-1.5595113507576154e-15)
    sum e = 1.237677946889612e-09
    sum de = -1.202205484211815e-11
Info: cfl dt = 0.001552714267191122 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9743e+04 | 11520 |      1 | 3.873e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.43079952319848 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.483899451446181, dt = 0.001552714267191122 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.87 us    (2.2%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.5%)
   LB compute        : 289.43 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3779513888888895
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0633889106894426e-27,4.7025574814740496e-27,-2.9962731969028215e-16)
    sum a = (1.1143566869761554e-25,8.805290112771139e-26,-1.5024317215847355e-15)
    sum e = 1.2376592776805218e-09
    sum de = -1.2022842310412516e-11
Info: cfl dt = 0.0015528158151756136 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7764e+04 | 11520 |      1 | 4.149e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.471804538225973 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.485452165713372, dt = 0.0015528158151756136 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (2.2%)
   patch tree reduce : 1.70 us    (0.6%)
   gen split merge   : 1.10 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 268.05 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.377690972222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.1216198974767365e-28,5.366178731901044e-27,-3.019160052512372e-16)
    sum a = (-2.2740226869124985e-25,-5.23047269354309e-26,-1.4447748980284612e-15)
    sum e = 1.23764060780393e-09
    sum de = -1.2021359284694763e-11
Info: cfl dt = 0.001552913959475248 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9808e+04 | 11520 |      1 | 3.865e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.464544926101293 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.4870049815285475, dt = 0.001552913959475248 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (2.0%)
   patch tree reduce : 1.97 us    (0.7%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.5%)
   LB compute        : 269.41 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.377690972222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3244687443213793e-27,5.09088339603948e-27,-3.041148511452452e-16)
    sum a = (-3.801294640115674e-25,8.547469443065018e-26,-1.386564727660214e-15)
    sum e = 1.2376219408133e-09
    sum de = -1.2017623381877002e-11
Info: cfl dt = 0.0015530065755562364 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9502e+04 | 11520 |      1 | 3.905e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.316887563683638 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.488557895488023, dt = 0.0015530065755562364 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.0%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 298.49 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.377690972222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0685289341940706e-27,5.379007355864366e-27,-3.062229975916482e-16)
    sum a = (-2.081704277723969e-27,3.9299484024894673e-25,-1.3278252049606017e-15)
    sum e = 1.2376032802606606e-09
    sum de = -1.2011652519280989e-11
Info: cfl dt = 0.001553091854674565 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7318e+04 | 11520 |      1 | 4.217e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.257741835862818 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.490110902063579, dt = 0.001553091854674565 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (1.9%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 1.58 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.4%)
   LB compute        : 311.20 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3772569444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7446928590118276e-27,6.261755372367569e-27,-3.08239620669856e-16)
    sum a = (-4.142591512670698e-25,-2.451915828533622e-25,-1.268580462832177e-15)
    sum e = 1.2375846296922375e-09
    sum de = -1.2003464959233853e-11
Info: cfl dt = 0.0015531683362148968 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6832e+04 | 11520 |      1 | 4.293e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.022843690401013 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.4916639939182534, dt = 0.0015531683362148968 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (1.9%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 310.95 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3772569444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.7189748410911667e-27,5.364791853634739e-27,-3.1016393341304913e-16)
    sum a = (-1.7705997450264068e-25,-6.946665204182347e-26,-1.208854747836405e-15)
    sum e = 1.2375659926435528e-09
    sum de = -1.1993079282168567e-11
Info: cfl dt = 0.0015532349288541318 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9838e+04 | 11520 |      1 | 3.861e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.482431220242406 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.4932171622544685, dt = 0.0015532349288541318 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.9%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 292.34 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.377430555555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.8035744153357783e-27,5.4050113233575875e-27,-3.1199518678632757e-16)
    sum a = (1.7428344421349787e-25,-1.6643232634794464e-25,-1.1486723978902199e-15)
    sum e = 1.2375473726343597e-09
    sum de = -1.198051439910322e-11
Info: cfl dt = 0.0015532909202790133 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9851e+04 | 11520 |      1 | 3.859e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.489260765147186 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.4947703971833226, dt = 0.0015532909202790133 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (1.9%)
   patch tree reduce : 20.53 us   (5.9%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.64 us    (0.5%)
   LB compute        : 310.14 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 us    (72.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.377430555555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2724000393409216e-27,5.098164506937582e-27,-3.1373267052830176e-16)
    sum a = (-3.309507606883882e-25,-1.6335553691414675e-25,-1.0880578180880757e-15)
    sum e = 1.237528773163399e-09
    sum de = -1.1965789544491241e-11
Info: cfl dt = 0.001553335975548065 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9744e+04 | 11520 |      1 | 3.873e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.437841515473906 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.4963236881036015, dt = 0.001553335975548065 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.7%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 320.00 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.377430555555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.183232340736802e-27,4.8367379537390684e-27,-3.153757138426455e-16)
    sum a = (-2.7810792498563094e-25,3.151833416787654e-25,-1.027035457191743e-15)
    sum e = 1.2375101977032165e-09
    sum de = -1.194892425292953e-11
Info: cfl dt = 0.001553370124536974 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9890e+04 | 11520 |      1 | 3.854e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.509127365853995 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.4978770240791497, dt = 0.001553370124536974 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.55 us    (2.5%)
   patch tree reduce : 4.05 us    (1.3%)
   gen split merge   : 1.85 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.86 us    (0.6%)
   LB compute        : 274.24 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3773437500000005
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.572598414001962e-27,5.674759146153931e-27,-3.169236859244663e-16)
    sum a = (-3.590128555288058e-25,2.5614254700389064e-26,-9.656297834440603e-16)
    sum e = 1.237491649695197e-09
    sum de = -1.192993837195216e-11
Info: cfl dt = 0.0015533937392358506 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9918e+04 | 11520 |      1 | 3.851e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.522867170570278 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.499430394203687, dt = 0.0005696057963131551 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.9%)
   patch tree reduce : 1.80 us    (0.6%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 291.54 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3773437500000005
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.8402659193988476e-27,5.47088804100708e-27,-3.174260213765264e-16)
    sum a = (1.4326175115278518e-25,-2.6586595052895573e-25,-9.432298178534176e-16)
    sum e = 1.2374848686770356e-09
    sum de = -1.192153458525026e-11
Info: cfl dt = 0.0015533954678139685 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7649e+04 | 11520 |      1 | 4.167e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.921531623174238 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 1285                                                    [SPH][rank=0]
Info: time since start : 600.3672913920001 (s)                                        [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[-4.11110709e-16 -1.71551039e-12  9.15782249e-11 ... -5.73583793e-11
 -3.34995264e-09  9.81000800e-08]
(11520, 3)
[[-4.11110709e-16 -1.71551039e-12  9.15782249e-11 -1.40434312e-12
  -8.07564491e-11]
 [ 5.37811238e-06  3.94261739e-06 -4.49741814e-09 -3.35671516e-10
   1.14786273e-07]
 [ 2.79647743e-05  3.30521315e-05  3.33412442e-05  1.35151012e-05
  -8.11527898e-08]
 ...
 [ 3.49083798e-05  4.32287130e-05  5.07950195e-05  4.28429290e-05
  -4.58407669e-08]
 [ 1.37132779e-05  1.40417855e-05  7.73734322e-06 -8.40520006e-09
  -7.99245740e-08]
 [ 3.37233523e-07 -1.06505390e-11 -5.73583793e-11 -3.34995264e-09
   9.81000800e-08]]
compute original rho
Info: Dumping state to _to_trash/dusty_settle/dump/0000025.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.84 us   (70.9%)
Info: dump to _to_trash/dusty_settle/dump/0000025.sham                      [Shamrock Dump][rank=0]
              - took 1.22 ms, bandwidth = 2.43 GB/s
Info: evolve_until (target_time = 2.60s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 2.5, dt = 0.0015533954678139685 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.37 us    (1.0%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 329.49 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3773437500000005
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.4692759831622306e-27,4.99865599133019e-27,-3.188848507253333e-16)
    sum a = (4.0281047117872116e-25,-2.559775084902003e-25,-8.811312568833848e-16)
    sum e = 1.2374663526090113e-09
    sum de = -1.1900605846497394e-11
Info: cfl dt = 0.0015534103006945672 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6561e+04 | 11520 |      1 | 4.337e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.893718832474823 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.501553395467814, dt = 0.0015534103006945672 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.6%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 336.73 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.377604166666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.626747436381877e-27,4.587793304937302e-27,-3.202053772846699e-16)
    sum a = (2.3681223772813e-25,-5.783143682665675e-26,-8.189165806990559e-16)
    sum e = 1.2374478823352603e-09
    sum de = -1.1876678239125734e-11
Info: cfl dt = 0.0015534121826756638 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9711e+04 | 11520 |      1 | 3.877e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.42299940349575 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.5031068057685086, dt = 0.0015534121826756638 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.9%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 298.49 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.377604166666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.3760691897472286e-27,4.671699440048761e-27,-3.2142916981800232e-16)
    sum a = (1.5759375115678219e-25,1.4754443123913536e-25,-7.564000018087091e-16)
    sum e = 1.237429451538407e-09
    sum de = -1.1850702647481474e-11
Info: cfl dt = 0.001553406840470177 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9876e+04 | 11520 |      1 | 3.856e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.502873870459013 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.504660217951184, dt = 0.001553406840470177 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.8%)
   patch tree reduce : 1.72 us    (0.6%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 291.75 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3773437500000005
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1850267085636996e-27,5.053437682849242e-27,-3.22555609747767e-16)
    sum a = (5.797220497068672e-25,1.8394998572964447e-25,-6.936066328757139e-16)
    sum e = 1.2374110627463806e-09
    sum de = -1.1822696350015115e-11
Info: cfl dt = 0.0015533956582572967 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9861e+04 | 11520 |      1 | 3.858e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.495505988073099 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.506213624791654, dt = 0.0015533956582572967 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.7%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 332.59 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3773437500000005
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.021435843133713e-27,5.3377477274417895e-27,-3.23584283455606e-16)
    sum a = (-2.589856474498161e-25,-2.956852201327819e-25,-6.305606729908007e-16)
    sum e = 1.2373927191689723e-09
    sum de = -1.1792680602338172e-11
Info: cfl dt = 0.0015533801407566215 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6363e+04 | 11520 |      1 | 4.370e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.797646700856298 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.5077670204499114, dt = 0.0015533801407566215 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (1.9%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 303.92 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3773437500000005
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.014440681808171e-27,4.475109445800012e-27,-3.245148162218457e-16)
    sum a = (5.13083935889173e-25,-2.734840728457697e-25,-5.67286217581163e-16)
    sum e = 1.2373744239615775e-09
    sum de = -1.1760676841075824e-11
Info: cfl dt = 0.001553361839925656 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6786e+04 | 11520 |      1 | 4.301e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.002671865603476 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.509320400590668, dt = 0.001553361839925656 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (1.6%)
   patch tree reduce : 2.22 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 366.19 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3773437500000005
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.3519024596774e-28,4.071874589871801e-27,-3.2534687234362595e-16)
    sum a = (-1.3082700061709358e-25,1.0891432400947284e-25,-5.038072453908003e-16)
    sum e = 1.237356180227432e-09
    sum de = -1.1726706691966729e-11
Info: cfl dt = 0.0015533423021803284 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9635e+04 | 11520 |      1 | 3.887e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.38579555258471 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.5108737624305935, dt = 0.0015533423021803284 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.8%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 320.91 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3773437500000005
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3199613899558878e-27,4.5818990723055045e-27,-3.2608015454362364e-16)
    sum a = (3.6245092675097616e-25,4.3945179497450215e-25,-4.401476130014384e-16)
    sum e = 1.2373379910175375e-09
    sum de = -1.169079196643074e-11
Info: cfl dt = 0.0015533230184350206 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9754e+04 | 11520 |      1 | 3.872e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.443155547946207 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.5124271047327738, dt = 0.0015533230184350206 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.8%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.5%)
   LB compute        : 296.16 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.377604166666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.931799884974985e-28,5.504519838964979e-27,-3.267144033621119e-16)
    sum a = (-3.899624309196706e-26,9.494291235471517e-26,-3.7633104168021965e-16)
    sum e = 1.2373198593312233e-09
    sum de = -1.1652954633487767e-11
Info: cfl dt = 0.0015533053784917575 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8655e+04 | 11520 |      1 | 4.020e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.909375781390427 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.513980427751209, dt = 0.0015533053784917575 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.6%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 317.37 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.377604166666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.974550031254378e-28,5.3769270384649085e-27,-3.2724939651897406e-16)
    sum a = (4.316825029266609e-25,-3.693575805171756e-25,-3.1238111392897204e-16)
    sum e = 1.2373017881173067e-09
    sum de = -1.161321682549897e-11
Info: cfl dt = 0.0015532906310431788 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9800e+04 | 11520 |      1 | 3.866e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.465024370979025 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.5155337331297005, dt = 0.0015532906310431788 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.7%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 321.04 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.377604166666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5587904013329266e-28,4.4262219869127564e-27,-3.276849482929367e-16)
    sum a = (3.581613122732945e-26,1.8031081715885986e-25,-2.483212716107031e-16)
    sum e = 1.2372837802757032e-09
    sum de = -1.1571600814868526e-11
Info: cfl dt = 0.0015532798503124475 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9781e+04 | 11520 |      1 | 3.868e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.455972835517167 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.5170870237607437, dt = 0.0015532798503124475 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (1.8%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 342.60 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.377604166666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.941629572827153e-29,5.10856609393487e-27,-3.280209089441514e-16)
    sum a = (2.4349283033692174e-25,7.415638089933419e-27,-1.8417481246292153e-16)
    sum e = 1.2372658386594726e-09
    sum de = -1.1528129021885458e-11
Info: cfl dt = 0.0015532739100977632 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9761e+04 | 11520 |      1 | 3.871e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.445750519857121 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.5186403036110563, dt = 0.0015532739100977632 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (2.0%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.5%)
   LB compute        : 265.99 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.377777777777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.401890847258401e-28,5.025353397956564e-27,-3.2825716417391127e-16)
    sum a = (4.768475805471531e-25,5.0253533979565635e-26,-1.1996489517818264e-16)
    sum e = 1.2372479660771105e-09
    sum de = -1.1482823996827276e-11
Info: cfl dt = 0.0015532734657351644 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7363e+04 | 11520 |      1 | 4.210e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.28204837323219 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.520193577521154, dt = 0.0015532734657351644 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.6%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 1.53 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.4%)
   LB compute        : 324.63 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.377777777777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4492877882888392e-27,5.069733502478327e-27,-3.2839363466817935e-16)
    sum a = (-1.017663534249363e-25,-7.546420710445991e-26,-5.571454271031741e-17)
    sum e = 1.2372301652950724e-09
    sum de = -1.1435708436371523e-11
Info: cfl dt = 0.0015532789442207434 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8500e+04 | 11520 |      1 | 4.042e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.833934597841933 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.521746850986889, dt = 0.0015532789442207434 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (2.1%)
   patch tree reduce : 1.92 us    (0.7%)
   gen split merge   : 992.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 255.77 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.377777777777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.418351076472014e-28,4.9192572105842226e-27,-3.284302757101504e-16)
    sum a = (6.958855864143169e-25,2.30487032675079e-26,8.553355712574661e-18)
    sum e = 1.2372124390403183e-09
    sum de = -1.1386805160124327e-11
Info: cfl dt = 0.0015532905424544285 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6379e+04 | 11520 |      1 | 4.367e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.804121644520132 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.5233001299311097, dt = 0.0015532905424544285 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (2.1%)
   patch tree reduce : 1.98 us    (0.7%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 273.97 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.377777777777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.547695375202486e-27,4.999002710896766e-27,-3.2836707687721224e-16)
    sum a = (-2.6479666738563453e-25,-1.7502542408597109e-25,7.281604567406238e-17)
    sum e = 1.2371947900029007e-09
    sum de = -1.1336137108832942e-11
Info: cfl dt = 0.0015533082333295764 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8118e+04 | 11520 |      1 | 4.097e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.648685875757073 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.524853420473564, dt = 0.0015533082333295764 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.7%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 325.86 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.377777777777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.370235727109448e-27,4.6009686484672e-27,-3.2820406179930756e-16)
    sum a = (-3.0881618355815868e-25,-1.183929435205351e-25,1.3705089977938752e-16)
    sum e = 1.2371772208384202e-09
    sum de = -1.1283727369776481e-11
Info: cfl dt = 0.0015533317791510885 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9776e+04 | 11520 |      1 | 3.869e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.453306964995175 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.5264067287068936, dt = 0.0015533317791510885 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (1.8%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (0.4%)
   LB compute        : 321.45 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.48 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.377777777777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.421818272137775e-28,4.486551191497028e-27,-3.2794128801793794e-16)
    sum a = (4.1089874522781254e-25,1.8079622455206665e-25,2.0123541880486508e-16)
    sum e = 1.2371597341702078e-09
    sum de = -1.1229599152523747e-11
Info: cfl dt = 0.0015533607516393729 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9958e+04 | 11520 |      1 | 3.845e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.542219710264288 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.527960060486045, dt = 0.0015533607516393729 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.8%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (0.5%)
   LB compute        : 286.72 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.378559027777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0726895689929857e-27,4.9976158326304614e-27,-3.275788468892489e-16)
    sum a = (-3.6449934595030884e-26,7.135766055793049e-26,2.653472273824951e-16)
    sum e = 1.2371423325913016e-09
    sum de = -1.1173775815486201e-11
Info: cfl dt = 0.001553394557608386 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9820e+04 | 11520 |      1 | 3.863e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.475149259080332 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.5295134212376844, dt = 0.001553394557608386 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (2.1%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 267.44 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.378559027777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.656626089101453e-27,4.994148636964698e-27,-3.271168635670214e-16)
    sum a = (2.528473242431497e-25,-8.247765049716485e-26,3.2936407658337296e-16)
    sum e = 1.237125018666001e-09
    sum de = -1.111628084443324e-11
Info: cfl dt = 0.0015534324692299025 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9750e+04 | 11520 |      1 | 3.872e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.441824369111906 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.5310668157952927, dt = 0.0015534324692299025 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.1%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.54 us    (0.5%)
   LB compute        : 279.67 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.378732638888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.311579350364041e-27,4.720240179369439e-27,-3.265554970037923e-16)
    sum a = (2.7647418238792354e-25,1.0296739000355653e-25,3.932638511160091e-16)
    sum e = 1.23710779493109e-09
    sum de = -1.1057137866333643e-11
Info: cfl dt = 0.0015534736577210882 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9916e+04 | 11520 |      1 | 3.851e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.522520819368502 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.532620248264523, dt = 0.0015534736577210882 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.44 us    (2.2%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 1.03 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.5%)
   LB compute        : 271.40 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.379166666666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.76058118908032e-27,5.067999904645446e-27,-3.2589493997799266e-16)
    sum a = (-8.707376507169998e-26,-1.9301739583474728e-25,4.570245669326883e-16)
    sum e = 1.2370906638965993e-09
    sum de = -1.0996370651781898e-11
Info: cfl dt = 0.0015535172291760411 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9929e+04 | 11520 |      1 | 3.849e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.529176093508473 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.5341737219222438, dt = 0.0015535172291760411 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (2.0%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 282.93 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.379166666666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2800278698055997e-27,4.5052740480921476e-27,-3.2513541914297696e-16)
    sum a = (-1.6604816106817812e-25,1.2102731878738166e-25,5.206243750301368e-16)
    sum e = 1.2370736280461222e-09
    sum de = -1.0934003111511818e-11
Info: cfl dt = 0.0015535622612546857 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0002e+04 | 11520 |      1 | 3.840e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.565227127683245 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.5357272391514196, dt = 0.0015535622612546857 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (2.3%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 261.44 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.379166666666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0283094644712224e-27,4.9293120780149345e-27,-3.242771950627156e-16)
    sum a = (-1.4501476528139484e-25,-3.311033172976818e-26,5.840415685105313e-16)
    sum e = 1.2370566898367218e-09
    sum de = -1.0870059296805361e-11
Info: cfl dt = 0.0015536078394403532 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9945e+04 | 11520 |      1 | 3.847e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.537955988578803 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.5372808014126744, dt = 0.0015536078394403532 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (2.1%)
   patch tree reduce : 1.77 us    (0.6%)
   gen split merge   : 1.51 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.5%)
   LB compute        : 263.60 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.48 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (62.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.379340277777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7897664026667436e-27,4.776755468721372e-27,-3.2332056222495363e-16)
    sum a = (-1.1000718408332127e-26,-1.2439188546143787e-25,6.472545886575335e-16)
    sum e = 1.2370398516983993e-09
    sum de = -1.0804563407055169e-11
Info: cfl dt = 0.00155365309162884 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9901e+04 | 11520 |      1 | 3.853e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.516937183474582 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.538834409252115, dt = 0.00155365309162884 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (2.3%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 267.06 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.379340277777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8792200508434232e-27,4.485857752363876e-27,-3.2226584900984513e-16)
    sum a = (-6.139821035194023e-25,-2.3948059151250106e-25,7.102420342396919e-16)
    sum e = 1.2370231160331704e-09
    sum de = -1.073753977550467e-11
Info: cfl dt = 0.0015536972198987003 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9912e+04 | 11520 |      1 | 3.851e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.522958475836475 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.5403880623437436, dt = 0.0015536972198987003 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (2.0%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.5%)
   LB compute        : 275.00 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.379600694444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.569763887475335e-28,4.0878236899343095e-27,-3.211134176156387e-16)
    sum a = (1.0924162728032085e-25,1.045872638186009e-25,7.729826746956819e-16)
    sum e = 1.237006485213838e-09
    sum de = -1.0669012871088667e-11
Info: cfl dt = 0.0015537395284420086 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7225e+04 | 11520 |      1 | 4.231e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.218379878575174 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.541941759563642, dt = 0.0015537395284420086 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (2.2%)
   patch tree reduce : 1.69 us    (0.6%)
   gen split merge   : 1.07 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 263.05 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3798611111111105
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2419494874762253e-27,4.489671667596215e-27,-3.198636639002073e-16)
    sum a = (2.7276012239075847e-25,-3.033712994846448e-25,8.354554563604801e-16)
    sum e = 1.2369899615824595e-09
    sum de = -1.0599007285012763e-11
Info: cfl dt = 0.0015537794467868817 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9898e+04 | 11520 |      1 | 3.853e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.51654773512892 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.543495499092084, dt = 0.0015537794467868817 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.8%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.5%)
   LB compute        : 283.69 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.380121527777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.759255080808031e-27,3.746304916856677e-27,-3.185170171680236e-16)
    sum a = (5.254604375376798e-26,-3.0962889422221347e-25,8.9763951761713e-16)
    sum e = 1.2369735474486334e-09
    sum de = -1.0527547738467863e-11
Info: cfl dt = 0.0015538165476280143 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9997e+04 | 11520 |      1 | 3.840e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.565434389691022 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.545049278538871, dt = 0.0015538165476280143 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (2.2%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.5%)
   LB compute        : 265.39 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.380381944444443
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6420638673052495e-27,3.254656571451515e-27,-3.170739398736233e-16)
    sum a = (4.050405714309398e-25,1.5786557929697797e-25,9.595142017801996e-16)
    sum e = 1.236957245087595e-09
    sum de = -1.0454659056418498e-11
Info: cfl dt = 0.0015538505587643695 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9982e+04 | 11520 |      1 | 3.842e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.558361653282907 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.5466030950864993, dt = 0.0015538505587643695 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (1.9%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 317.14 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.381076388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5400675447378078e-27,3.8267438563023726e-27,-3.155349272410347e-16)
    sum a = (1.8135929712818653e-25,9.611066385494408e-26,1.0210590702609156e-15)
    sum e = 1.2369410567383144e-09
    sum de = -1.0380366166434436e-11
Info: cfl dt = 0.0015538813687228285 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9851e+04 | 11520 |      1 | 3.859e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.495063616065107 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.5481569456452635, dt = 0.0015538813687228285 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.86 us    (2.3%)
   patch tree reduce : 1.77 us    (0.6%)
   gen split merge   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 278.63 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.381336805555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.651711245175369e-27,3.895394330484476e-27,-3.139005068115563e-16)
    sum a = (1.7139596366305063e-25,7.117459262677821e-26,1.0822539209865497e-15)
    sum e = 1.2369249846015552e-09
    sum de = -1.0304694095662381e-11
Info: cfl dt = 0.0015539090268054275 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7531e+04 | 11520 |      1 | 4.184e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.368834525850414 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.5497108270139863, dt = 0.0015539090268054275 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (2.1%)
   patch tree reduce : 1.97 us    (0.7%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.4%)
   LB compute        : 264.31 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 us    (60.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.381857638888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.902042772243441e-27,4.0278412049166135e-27,-3.1217123790457207e-16)
    sum a = (2.3763881717484785e-25,1.7492972948559605e-25,1.1430787947505015e-15)
    sum e = 1.2369090308380118e-09
    sum de = -1.0227667938564184e-11
Info: cfl dt = 0.0015539337366011776 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9921e+04 | 11520 |      1 | 3.850e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.529719569214356 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.5512647360407916, dt = 0.0015539337366011776 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.9%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.5%)
   LB compute        : 280.01 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.382291666666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.356938843591517e-27,4.408539289017366e-27,-3.10347711042119e-16)
    sum a = (6.32194588912521e-26,2.1106622959244196e-25,1.2035139935046678e-15)
    sum e = 1.2368931975666384e-09
    sum de = -1.0149312854904957e-11
Info: cfl dt = 0.00155395584400641 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9863e+04 | 11520 |      1 | 3.858e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.501498285737872 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.552818669777393, dt = 0.00155395584400641 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (1.8%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 320.53 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3824652777777775
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.293835882474634e-27,4.752485099061033e-27,-3.084305472916064e-16)
    sum a = (-2.7612746282134727e-26,-1.305385299377021e-25,1.2635400837100077e-15)
    sum e = 1.2368774868631452e-09
    sum de = -1.0069654058861453e-11
Info: cfl dt = 0.0015539758202155094 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9340e+04 | 11520 |      1 | 3.926e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.247772582357964 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.5543726256213994, dt = 0.0015539758202155094 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.0%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 306.23 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (59.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.383246527777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1835790603033784e-27,4.2854538428827874e-27,-3.0642039760674943e-16)
    sum a = (6.341223497026851e-26,-3.263601936269183e-26,1.3231379127011738e-15)
    sum e = 1.236861900758748e-09
    sum de = -9.988716799113737e-12
Info: cfl dt = 0.001553994240408466 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8887e+04 | 11520 |      1 | 3.988e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.02780294622105 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.555926601441615, dt = 0.001553994240408466 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (2.0%)
   patch tree reduce : 1.75 us    (0.6%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 275.64 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.383506944444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.339602865262703e-27,4.2854538428827874e-27,-3.0431794211819744e-16)
    sum a = (-3.1334295421937854e-25,-5.6567435974746275e-25,1.3822886146930472e-15)
    sum e = 1.2368464412392338e-09
    sum de = -9.906526353059663e-12
Info: cfl dt = 0.0015540117590214122 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9109e+04 | 11520 |      1 | 3.957e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.136233787081599 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.5574805956820237, dt = 0.0015540117590214122 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.5%)
   patch tree reduce : 1.72 us    (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 368.75 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.383767361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5997033101889273e-27,3.034489646675579e-27,-3.021238894316736e-16)
    sum a = (-2.4241799968053526e-25,-4.726536606698465e-25,1.4409736135076307e-15)
    sum e = 1.2368311102443005e-09
    sum de = -9.823108013394203e-12
Info: cfl dt = 0.0015540290825842935 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9695e+04 | 11520 |      1 | 3.879e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.420842683590363 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.559034607441045, dt = 0.0015540290825842935 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (2.0%)
   patch tree reduce : 1.90 us    (0.7%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 264.37 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (72.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.383940972222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.214151152156107e-27,2.3431308309224823e-27,-2.9983897593968405e-16)
    sum a = (-2.1350436158460634e-25,-3.0694389789864676e-25,1.4991746346422406e-15)
    sum e = 1.2368159096672528e-09
    sum de = -9.73848707651183e-12
Info: cfl dt = 0.0015540469411740576 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8530e+04 | 11520 |      1 | 4.038e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.855185179523316 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.5605886365236294, dt = 0.0015540469411740576 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.9%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 289.17 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (63.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.385243055555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.915278885767356e-27,2.0338569775364428e-27,-2.974639651448986e-16)
    sum a = (2.1087969446562395e-25,-1.6568757271893879e-25,1.556873705845028e-15)
    sum e = 1.2368008413549997e-09
    sum de = -9.652688831648473e-12
Info: cfl dt = 0.0015540660595456434 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5959e+04 | 11520 |      1 | 4.438e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.606907319287705 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.5621426834648036, dt = 0.0015540660595456434 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (2.0%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 290.92 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.385416666666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5837542101264184e-27,1.8383071419874223e-27,-2.9499964702711307e-16)
    sum a = (7.24754844405724e-26,2.4023505328937104e-26,1.6140531600809459e-15)
    sum e = 1.2367859071083875e-09
    sum de = -9.565738559073481e-12
Info: cfl dt = 0.0015540871290677962 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8715e+04 | 11520 |      1 | 4.012e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.94530127861096 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.563696749524349, dt = 0.0015540871290677962 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (2.1%)
   patch tree reduce : 1.98 us    (0.7%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 257.69 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.386024305555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.585834527525876e-27,2.057780627630206e-27,-2.9244683746091576e-16)
    sum a = (-9.687344690141189e-27,1.7808626441970648e-25,1.670695641769861e-15)
    sum e = 1.2367711086827813e-09
    sum de = -9.477661508422466e-12
Info: cfl dt = 0.0015541107813899942 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9975e+04 | 11520 |      1 | 3.843e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.55763741980277 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.565250836653417, dt = 0.0015541107813899942 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.7%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 321.28 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.386024305555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5248118838084516e-27,2.4568548487595013e-27,-2.8980637767553716e-16)
    sum a = (4.5014462640771455e-25,-4.921725853898245e-25,1.7267841061043426e-15)
    sum e = 1.2367564477889566e-09
    sum de = -9.388482906416402e-12
Info: cfl dt = 0.001554137564742519 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9880e+04 | 11520 |      1 | 3.855e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.511598802700968 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.566804947434807, dt = 0.001554137564742519 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (1.8%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 323.10 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.53 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (73.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.386024305555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.590627831463928e-27,1.2194127156487673e-27,-2.870791337865399e-16)
    sum a = (1.3069108654699567e-25,3.2428264998399326e-25,1.7823018198801033e-15)
    sum e = 1.2367419260941414e-09
    sum de = -9.298227956517955e-12
Info: cfl dt = 0.0015541679237973895 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7503e+04 | 11520 |      1 | 4.189e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.357206119103148 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.5683590849995492, dt = 0.0015541679237973895 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.79 us    (2.1%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 297.93 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.386545138888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.538966616044063e-27,2.2973638481344136e-27,-2.842659963855138e-16)
    sum a = (-5.447241766566578e-25,-2.836512774160525e-25,1.8372323587600535e-15)
    sum e = 1.236727545223233e-09
    sum de = -9.206921829759711e-12
Info: cfl dt = 0.00155420218369904 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9862e+04 | 11520 |      1 | 3.858e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.503110338339306 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.569913252923347, dt = 0.00155420218369904 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (2.0%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 302.62 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (62.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.38671875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1975086129604455e-27,1.4156559903309403e-27,-2.8136788020074534e-16)
    sum a = (3.167241634326304e-25,-2.6852736992199527e-25,1.8915596075188376e-15)
    sum e = 1.2367133067601298e-09
    sum de = -9.114589660500022e-12
Info: cfl dt = 0.0015542405387941253 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8712e+04 | 11520 |      1 | 4.012e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.945237904213936 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.571467455107046, dt = 0.0015542405387941253 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (2.0%)
   patch tree reduce : 1.71 us    (0.6%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 283.71 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.386892361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.311171860803448e-27,1.0332243083973065e-27,-2.783857238127303e-16)
    sum a = (1.179401277665865e-26,4.522027537549114e-25,1.9452677625680154e-15)
    sum e = 1.2366992122491244e-09
    sum de = -9.021256557504334e-12
Info: cfl dt = 0.0015542830464034087 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8362e+04 | 11520 |      1 | 4.062e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.775472619501157 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.5730216956458403, dt = 0.0015542830464034087 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (2.1%)
   patch tree reduce : 2.08 us    (0.8%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.5%)
   LB compute        : 255.70 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (63.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.386718749999999
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.129490807917479e-27,2.2512501457797688e-27,-2.7532048941301217e-16)
    sum a = (2.426482214727419e-25,-2.974701324615166e-25,1.9983413253904714e-15)
    sum e = 1.2366852631962587e-09
    sum de = -8.926947603397427e-12
Info: cfl dt = 0.0015543296257933493 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0051e+04 | 11520 |      1 | 3.833e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.59627062572128 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.5745759786922435, dt = 0.0015543296257933493 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (1.8%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 310.77 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.387152777777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.6884027492384384e-27,1.2450699635754119e-27,-2.7217316261880646e-16)
    sum a = (1.323303766577683e-25,1.6478679528497363e-25,2.0507651012446025e-15)
    sum e = 1.2366714610706293e-09
    sum de = -8.831687860110391e-12
Info: cfl dt = 0.0015543800623203472 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7908e+04 | 11520 |      1 | 4.128e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.555872567323162 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.576130308318037, dt = 0.0015543800623203472 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.8%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 313.42 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.387152777777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.743531160324066e-27,1.839347300687151e-27,-2.6894475231909055e-16)
    sum a = (-3.6058834923932843e-28,4.2632984625785637e-26,2.1025241967251896e-15)
    sum e = 1.2366578073055918e-09
    sum de = -8.735502380755209e-12
Info: cfl dt = 0.001554434016564033 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9523e+04 | 11520 |      1 | 3.902e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.340747617349852 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.5776846883803572, dt = 0.001554434016564033 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.7%)
   patch tree reduce : 1.86 us    (0.5%)
   gen split merge   : 1.37 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 326.64 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.387847222222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.705392008000676e-27,1.829292433256439e-27,-2.656362905340851e-16)
    sum a = (1.9593816146358585e-26,-1.9240370220190726e-25,2.1536040255122166e-15)
    sum e = 1.2366443032997729e-09
    sum de = -8.638416202687022e-12
Info: cfl dt = 0.00155449103804192 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9090e+04 | 11520 |      1 | 3.960e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.130581243012642 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.5792391223969213, dt = 0.00155449103804192 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.9%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.52 us    (0.5%)
   LB compute        : 293.87 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.388107638888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.768148249550982e-27,1.3424981617833458e-27,-2.622488322651828e-16)
    sum a = (2.266769313579723e-25,9.898392890316168e-26,2.2039903027053978e-15)
    sum e = 1.2366309504179466e-09
    sum de = -8.540454346904395e-12
Info: cfl dt = 0.0015545505829934326 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0000e+04 | 11520 |      1 | 3.840e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.573322171771144 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.580793613434963, dt = 0.0015545505829934326 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (2.1%)
   patch tree reduce : 1.61 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.5%)
   LB compute        : 269.29 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.388107638888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.253208923191194e-27,1.7485067742441665e-27,-2.5878345534700735e-16)
    sum a = (-6.364106988420886e-26,-2.6390455794083376e-25,2.25366905394686e-15)
    sum e = 1.2366177499916774e-09
    sum de = -8.441641837012678e-12
Info: cfl dt = 0.0015546120355561708 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0081e+04 | 11520 |      1 | 3.830e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.613095704210982 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.5823481640179566, dt = 0.0015546120355561708 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (2.1%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 265.52 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.388454861111112
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.9179311023119334e-27,1.0197022453008316e-27,-2.5524126024568343e-16)
    sum a = (-4.9807791304775175e-25,2.7815923948148423e-25,2.3026266136950256e-15)
    sum e = 1.236604703319708e-09
    sum de = -8.342003688235873e-12
Info: cfl dt = 0.0015546747315209287 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9981e+04 | 11520 |      1 | 3.842e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.565157105428629 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.5839027760535127, dt = 0.0015546747315209287 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.8%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 324.93 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.389409722222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.871531450384729e-27,1.9097313727021353e-27,-2.5162336982736146e-16)
    sum a = (1.6964294953444096e-26,-2.7185241056546175e-25,2.350849625146591e-15)
    sum e = 1.236591811668129e-09
    sum de = -8.241564916588248e-12
Info: cfl dt = 0.0015547379839822503 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9927e+04 | 11520 |      1 | 3.849e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.539620969456266 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.5854574507850336, dt = 0.0015547379839822503 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 24.81 us   (6.9%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 1.19 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.4%)
   LB compute        : 320.76 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (60.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.389409722222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.262284401916193e-27,1.0398119801622557e-27,-2.4793092907197693e-16)
    sum a = (-2.2911228959360407e-26,-3.831251210667864e-25,2.3983250411331827e-15)
    sum e = 1.2365790762702936e-09
    sum de = -8.140350540644935e-12
Info: cfl dt = 0.0015548011096137143 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9931e+04 | 11520 |      1 | 3.849e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.542033822349495 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.587012188769016, dt = 0.0015548011096137143 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (2.0%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.5%)
   LB compute        : 270.10 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.389409722222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2023019168984974e-27,3.106607316523445e-28,-2.4416510472068366e-16)
    sum a = (-3.486168160445827e-25,-4.604942054700164e-25,2.445040133922969e-15)
    sum e = 1.2365664983264984e-09
    sum de = -8.03838556259516e-12
Info: cfl dt = 0.001554863454899292 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9906e+04 | 11520 |      1 | 3.852e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.530734815801106 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.58856698987863, dt = 0.001554863454899292 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (2.1%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 279.49 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.389670138888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3750290310474997e-27,-4.496952778494317e-28,-2.4032708483135395e-16)
    sum a = (-9.78803205227494e-26,-3.785012689269252e-25,2.490982490768183e-15)
    sum e = 1.2365540790035e-09
    sum de = -7.935694983015872e-12
Info: cfl dt = 0.0015549244213159013 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9970e+04 | 11520 |      1 | 3.844e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.56223509978208 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.590121853333529, dt = 0.0015549244213159013 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.9%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 276.89 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.390190972222221
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.425650087767636e-27,-1.0110342561364246e-27,-2.3641807827749367e-16)
    sum a = (4.321734578329329e-25,-1.3120908557946062e-25,2.536140021364262e-15)
    sum e = 1.2365418194337903e-09
    sum de = -7.832303787820905e-12
Info: cfl dt = 0.0015549834885465652 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9940e+04 | 11520 |      1 | 3.848e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.548118925122141 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.591676777754845, dt = 0.0015549834885465652 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.81 us    (2.2%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 295.03 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.390364583333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.5219773572818254e-27,-9.416903428211691e-28,-2.324393141461488e-16)
    sum a = (-2.723939865284539e-25,2.672521353561277e-25,2.5805009737543482e-15)
    sum e = 1.2365297207147612e-09
    sum de = -7.728236948483397e-12
Info: cfl dt = 0.001555040234908449 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9726e+04 | 11520 |      1 | 3.875e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.444933011576648 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.5932317612433917, dt = 0.001555040234908449 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (2.0%)
   patch tree reduce : 1.71 us    (0.6%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.66 us    (0.5%)
   LB compute        : 266.93 us  (88.1%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.390538194444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5546297665340113e-27,-2.8500348372569996e-28,-2.2839204103156237e-16)
    sum a = (8.569798183152532e-26,-3.334970691853244e-25,2.6240539362630174e-15)
    sum e = 1.2365177839077437e-09
    sum de = -7.623519405386033e-12
Info: cfl dt = 0.0015550943542633037 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8793e+04 | 11520 |      1 | 4.001e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.992146753832376 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.5947868014783, dt = 0.0015550943542633037 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (2.0%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.5%)
   LB compute        : 287.80 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.390538194444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9699998072923917e-27,-1.2842492745985313e-27,-2.2427752626554625e-16)
    sum a = (1.889815800797994e-25,2.6995585453628953e-26,2.6667878368320854e-15)
    sum e = 1.2365060100369943e-09
    sum de = -7.518176051902721e-12
Info: cfl dt = 0.0015551456687914363 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9878e+04 | 11520 |      1 | 3.856e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.519722330940207 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.5963418958325635, dt = 0.0015551456687914363 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (1.9%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 310.90 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.390538194444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.383982969784466e-27,-9.174199731608298e-28,-2.2009705508773916e-16)
    sum a = (4.532318174285097e-26,-2.9805678196816363e-25,2.7086919472980527e-15)
    sum e = 1.2364944000886877e-09
    sum de = -7.412231731426356e-12
Info: cfl dt = 0.0015551941371924633 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0014e+04 | 11520 |      1 | 3.838e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.58651416544752 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.597897041501355, dt = 0.0015551941371924633 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.9%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 304.96 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.39079861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.289328528109143e-27,-1.6323557194411136e-27,-2.1585192975372228e-16)
    sum a = (9.097921426961517e-28,-1.4710617770698293e-25,2.7497558965068686e-15)
    sum e = 1.2364829550098973e-09
    sum de = -7.305711205975793e-12
Info: cfl dt = 0.0015552398579988592 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7509e+04 | 11520 |      1 | 4.188e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.369276869606873 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.599452235638547, dt = 0.0005477643614528738 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (2.0%)
   patch tree reduce : 2.43 us    (0.8%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 295.10 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.39140625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.289675247675719e-27,-1.611552545446537e-27,-2.1431378026429445e-16)
    sum a = (-3.5375936065604206e-25,2.7223726928436143e-25,2.7638770686664302e-15)
    sum e = 1.2364790356651665e-09
    sum de = -7.2678166157374756e-12
Info: cfl dt = 0.001555254175458384 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8849e+04 | 11520 |      1 | 3.993e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.938203632320904 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 1350                                                    [SPH][rank=0]
Info: time since start : 629.122643012 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[-5.00375808e-17 -7.41516789e-13  1.63182763e-10 ... -1.87915614e-11
 -2.14823588e-09 -4.91093628e-10]
(11520, 3)
[[-5.00375808e-17 -7.41516789e-13  1.63182763e-10 -1.22952101e-12
  -7.65934367e-11]
 [ 5.07392080e-06  3.04884048e-06 -7.62798046e-10 -1.65603934e-10
   2.17263124e-07]
 [ 2.77010785e-05  3.22022159e-05  3.02066889e-05  5.75039779e-06
  -5.32423997e-08]
 ...
 [ 3.48842075e-05  4.30070278e-05  4.93090537e-05  3.43903638e-05
  -2.74000217e-08]
 [ 1.33747836e-05  1.29507263e-05  4.85849721e-06 -3.61306935e-09
   6.00053983e-08]
 [ 2.36329973e-07 -6.46920934e-13 -1.87915614e-11 -2.14823588e-09
  -4.91093628e-10]]
compute original rho
Info: Dumping state to _to_trash/dusty_settle/dump/0000026.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.49 us   (71.3%)
Info: dump to _to_trash/dusty_settle/dump/0000026.sham                      [Shamrock Dump][rank=0]
              - took 1.21 ms, bandwidth = 2.44 GB/s
Info: evolve_until (target_time = 2.70s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 2.6, dt = 0.001555254175458384 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.58 us    (1.1%)
   patch tree reduce : 1.27 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 318.10 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.39140625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5913820405910965e-27,-1.0658159476554764e-27,-2.1001138137539657e-16)
    sum a = (-2.271151848901247e-25,-3.748121727385536e-25,2.8039293312563374e-15)
    sum e = 1.236467743108691e-09
    sum de = -7.160802549672896e-12
Info: cfl dt = 0.0015552977678121211 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6241e+04 | 11520 |      1 | 4.390e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.753803125294066 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.6015552541754583, dt = 0.0015552977678121211 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.87 us    (1.8%)
   patch tree reduce : 1.61 us    (0.4%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.3%)
   LB compute        : 357.15 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.391666666666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.368094639715974e-27,-2.129204858344919e-27,-2.0561929062101017e-16)
    sum a = (3.8698896391671245e-25,1.369930613890861e-25,2.8429776808436034e-15)
    sum e = 1.2364566891467409e-09
    sum de = -7.0530227599165e-12
Info: cfl dt = 0.0015553381919343127 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9224e+04 | 11520 |      1 | 3.942e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.203839767129114 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.6031105519432702, dt = 0.0015553381919343127 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.9%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 297.31 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.391927083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.4238557199407384e-27,-1.5463692669301969e-27,-2.0116713294981083e-16)
    sum a = (-3.2044654469939335e-25,1.5093950923505025e-25,2.8811542737415005e-15)
    sum e = 1.2364458031265933e-09
    sum de = -6.944750127995224e-12
Info: cfl dt = 0.0015553771636021563 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9979e+04 | 11520 |      1 | 3.843e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.57130919369896 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.6046658901352044, dt = 0.0015553771636021563 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (2.1%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 276.00 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.392361111111112
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.397912522441534e-27,-1.3216949877887691e-27,-1.9665616263134724e-16)
    sum a = (-4.815962517309818e-25,-8.152070449341433e-27,2.9184497613588543e-15)
    sum e = 1.2364350856216426e-09
    sum de = -6.83600789478266e-12
Info: cfl dt = 0.0015554153020261269 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0114e+04 | 11520 |      1 | 3.825e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.636978701573568 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.6062212672988068, dt = 0.0015554153020261269 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.0%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 304.31 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.392534722222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4756384753486362e-27,-1.4166961490306692e-27,-1.9208775693933214e-16)
    sum a = (2.3690654545023874e-25,1.9040174342449585e-25,2.954855718815653e-15)
    sum e = 1.2364245373583066e-09
    sum de = -6.7268202161755875e-12
Info: cfl dt = 0.0015554533086903403 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9986e+04 | 11520 |      1 | 3.842e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.575213198357545 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.607776682600833, dt = 0.0015554533086903403 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (1.8%)
   patch tree reduce : 1.89 us    (0.5%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.60 us    (0.5%)
   LB compute        : 328.50 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.392534722222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.462055642258145e-27,-9.909245212750005e-28,-1.874633036431843e-16)
    sum a = (-3.010635340495131e-25,2.071580066379942e-25,2.9903640882594332e-15)
    sum e = 1.2364141590198245e-09
    sum de = -6.617211088006503e-12
Info: cfl dt = 0.0015554919383058135 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9969e+04 | 11520 |      1 | 3.844e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.567462884224366 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.6093321359095234, dt = 0.0015554919383058135 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.8%)
   patch tree reduce : 1.80 us    (0.6%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 298.98 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.392534722222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5396082353819594e-27,-6.282558546362145e-28,-1.8278420060606696e-16)
    sum a = (5.703952933659653e-26,5.966960528081754e-25,3.024967181715014e-15)
    sum e = 1.2364039512472928e-09
    sum de = -6.507204336238609e-12
Info: cfl dt = 0.001555531973019398 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8038e+04 | 11520 |      1 | 4.109e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.629250825106428 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.6108876278478292, dt = 0.001555531973019398 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.7%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 311.05 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.392534722222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9336550227958985e-27,6.2028130460496015e-28,-1.7805185502101734e-16)
    sum a = (-2.071885179598529e-25,-5.289553707687686e-26,3.0586576836831288e-15)
    sum e = 1.2363939146400888e-09
    sum de = -6.396823626935749e-12
Info: cfl dt = 0.001555574195360574 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9927e+04 | 11520 |      1 | 3.849e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.547812397009722 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.612443159820849, dt = 0.001555574195360574 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.7%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 337.11 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.392534722222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4111486359654488e-27,-3.779243275681423e-29,-1.7326768272940147e-16)
    sum a = (-1.541515192998129e-25,3.8201284469720974e-25,3.091428640406833e-15)
    sum e = 1.236384049756458e-09
    sum de = -6.28609246724063e-12
Info: cfl dt = 0.001555619360879824 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9969e+04 | 11520 |      1 | 3.844e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.56866526734423 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.6139987340162096, dt = 0.001555619360879824 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.5%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 370.81 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3928819444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2419494874762253e-27,9.260879623252367e-28,-1.684331076561496e-16)
    sum a = (-2.6405330063489497e-25,8.426672346069844e-26,3.123273457190056e-15)
    sum e = 1.2363743571142643e-09
    sum de = -6.175034172716273e-12
Info: cfl dt = 0.0015556681713988715 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9938e+04 | 11520 |      1 | 3.848e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.553943637994788 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.6155543533770893, dt = 0.0015556681713988715 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (2.0%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 269.81 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.393055555555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.941325722857072e-28,8.411416685140489e-28,-1.635495613415572e-16)
    sum a = (9.616059147253106e-26,-4.0766177135425644e-25,3.1541858959965495e-15)
    sum e = 1.2363648371919895e-09
    sum de = -6.0636718912055406e-12
Info: cfl dt = 0.0015557212497762881 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7089e+04 | 11520 |      1 | 4.253e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.169347424536975 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.617110021548488, dt = 0.0015557212497762881 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (2.0%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 283.54 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.393315972222221
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1500688023335118e-27,-1.848015289851558e-28,-1.586184825688581e-16)
    sum a = (-2.867259865324509e-25,4.914375399086828e-25,3.1841600741968608e-15)
    sum e = 1.2363554904297545e-09
    sum de = -5.952028609677102e-12
Info: cfl dt = 0.0015557791170458038 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6119e+04 | 11520 |      1 | 4.411e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.697883742824704 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.6186657427982643, dt = 0.0015557791170458038 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.8%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 311.78 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.393315972222221
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.801780047508881e-28,1.289103348530599e-27,-1.5364131708707096e-16)
    sum a = (7.36432359408013e-26,9.86125922473585e-26,3.213190454190753e-15)
    sum e = 1.2363463172304456e-09
    sum de = -5.8401271598758814e-12
Info: cfl dt = 0.0015558421726872013 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7153e+04 | 11520 |      1 | 4.243e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.201097009474438 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.62022152191531, dt = 0.0015558421726872013 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.7%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1.20 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 332.06 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (71.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.393315972222221
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.990152411750311e-28,1.1244115544068673e-27,-1.4861951743996924e-16)
    sum a = (-5.575916332114366e-25,-1.4151151078070814e-25,3.2412718402237335e-15)
    sum e = 1.2363373179608934e-09
    sum de = -5.727990210797995e-12
Info: cfl dt = 0.0015559106787069697 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0038e+04 | 11520 |      1 | 3.835e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.6047089957574 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 2.6217773640879973, dt = 0.0015559106787069697 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.9%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.5%)
   LB compute        : 282.81 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.393315972222221
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.797151153155356e-28,7.478741051050302e-28,-1.4355454286885564e-16)
    sum a = (-1.2560679082272113e-25,-2.408674697788062e-25,3.2683993737568764e-15)
    sum e = 1.2363284929530876e-09
    sum de = -5.61564026885304e-12
Info: cfl dt = 0.0015559847480652485 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0184e+04 | 11520 |      1 | 3.817e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.675923759641414 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.623333274766704, dt = 0.0015559847480652485 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (2.0%)
   patch tree reduce : 1.80 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.72 us    (0.6%)
   LB compute        : 282.09 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (71.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.393576388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.394670506354315e-28,2.7598877499471675e-28,-1.3844785928338756e-16)
    sum a = (1.4974956768256048e-25,-2.4447335327119944e-25,3.294568533589313e-15)
    sum e = 1.236319842505379e-09
    sum de = -5.50309970649785e-12
Info: cfl dt = 0.0015560643378488 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9281e+04 | 11520 |      1 | 3.934e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.237875891220297 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.6248892595147693, dt = 0.0015560643378488 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (2.0%)
   patch tree reduce : 1.58 us    (0.6%)
   gen split merge   : 992.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.61 us    (0.6%)
   LB compute        : 262.97 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.393836805555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.848587188996678e-29,-1.2308544613457845e-28,-1.3330093927266676e-16)
    sum a = (2.2600048148358197e-25,-1.065122508522324e-25,3.3197751296661396e-15)
    sum e = 1.2363113668835651e-09
    sum de = -5.390390772573794e-12
Info: cfl dt = 0.0015561492474323335 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0153e+04 | 11520 |      1 | 3.820e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.662584514609051 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.626445323852618, dt = 0.0015561492474323335 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (2.0%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 299.84 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.393836805555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.314925006041772e-28,-1.6434507455715544e-28,-1.2811526216038154e-16)
    sum a = (-4.664765048717235e-27,-7.432558004782342e-26,3.3440153015884033e-15)
    sum e = 1.2363030663219007e-09
    sum de = -5.2775355917001126e-12
Info: cfl dt = 0.0015562391217061333 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0117e+04 | 11520 |      1 | 3.825e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.645837787733335 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.6280014731000505, dt = 0.0015562391217061333 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.7%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 334.13 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.393836805555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5085160641793663e-28,-2.6177327276508937e-28,-1.2289231406189057e-16)
    sum a = (-2.8515465345672723e-25,2.808428489267846e-25,3.3672855213505523e-15)
    sum e = 1.2362949410239995e-09
    sum de = -5.164556164839225e-12
Info: cfl dt = 0.001556333459288432 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0030e+04 | 11520 |      1 | 3.836e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.604352507907128 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.629557712221757, dt = 0.001556333459288432 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (1.8%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 324.53 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3941840277777775
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.229978712230583e-28,4.420674473847536e-28,-1.176335879247144e-16)
    sum a = (3.2602456908647247e-25,7.826154056759732e-26,3.389582585996596e-15)
    sum e = 1.2362869911636189e-09
    sum de = -5.051474384180159e-12
Info: cfl dt = 0.0015564316254711122 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8008e+04 | 11520 |      1 | 4.113e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.621639172217213 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.6311140456810453, dt = 0.0015564316254711122 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (2.2%)
   patch tree reduce : 1.75 us    (0.6%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 262.43 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (64.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3941840277777775
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.722606446341457e-28,4.1762371794112605e-28,-1.123405835568997e-16)
    sum a = (-3.095512290393004e-26,7.607027290683524e-26,3.4109036186394256e-15)
    sum e = 1.2362792168852452e-09
    sum de = -4.938312058983857e-12
Info: cfl dt = 0.0015565328695211665 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8091e+04 | 11520 |      1 | 4.101e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.662967456270875 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.6326704773065166, dt = 0.0015565328695211665 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.7%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 317.01 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.54 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.394357638888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.009239888309527e-28,5.205994292142804e-28,-1.070148075949936e-16)
    sum a = (-3.6038309125591526e-25,-1.3621363580342262e-25,3.4312460652859524e-15)
    sum e = 1.236271618304488e-09
    sum de = -4.825090875233871e-12
Info: cfl dt = 0.0015566363457436023 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0030e+04 | 11520 |      1 | 3.836e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.607096547900666 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.634227010176038, dt = 0.0015566363457436023 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.8%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.59 us    (0.5%)
   LB compute        : 298.19 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.394357638888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.720872848508576e-28,1.3123335594912096e-28,-1.0165777341524455e-16)
    sum a = (5.287251489765621e-25,3.3207413208409537e-26,3.4506076992941986e-15)
    sum e = 1.2362641955083958e-09
    sum de = -4.71183247222084e-12
Info: cfl dt = 0.0015567411377196937 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9772e+04 | 11520 |      1 | 3.869e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.482687887983086 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.6357836465217814, dt = 0.0015567411377196937 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.9%)
   patch tree reduce : 1.94 us    (0.7%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.5%)
   LB compute        : 274.08 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.39453125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.520919298184574e-28,3.0424641967068337e-28,-9.627100094787162e-17)
    sum a = (-1.820333199656108e-25,3.390334872244144e-25,3.46898661984769e-15)
    sum e = 1.2362569485554201e-09
    sum de = -4.5985583739021524e-12
Info: cfl dt = 0.0015568462848897227 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8112e+04 | 11520 |      1 | 4.098e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.675898034070467 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.637340387659501, dt = 0.0015568462848897227 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (2.0%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 295.34 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.39453125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1060354173783246e-28,1.091473195582121e-27,-9.085601640571346e-17)
    sum a = (-2.688075193317889e-25,1.4110099481388182e-26,3.4863812487218306e-15)
    sum e = 1.236249877475418e-09
    sum de = -4.485290022484361e-12
Info: cfl dt = 0.0015569508106649955 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0056e+04 | 11520 |      1 | 3.833e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.62255197659562 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.6388972339443906, dt = 0.0015569508106649955 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.1%)
   patch tree reduce : 1.55 us    (0.5%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.5%)
   LB compute        : 274.44 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.394704861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.902328721816001e-28,8.75120186038524e-28,-8.54143519126226e-17)
    sum a = (-1.8106805269226246e-25,-1.121901304744855e-25,3.5027903325377022e-15)
    sum e = 1.2362429822693798e-09
    sum de = -4.372048766568368e-12
Info: cfl dt = 0.0015570537511680775 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8394e+04 | 11520 |      1 | 4.057e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.81513245645645 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.6404541847550558, dt = 0.0015570537511680775 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.7%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 316.80 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.395225694444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.876896653467901e-28,5.875163055635019e-28,-7.994754501745887e-17)
    sum a = (2.3077654351317017e-27,1.3595845020242248e-25,3.5182129465386356e-15)
    sum e = 1.2362362629090757e-09
    sum de = -4.258855865708117e-12
Info: cfl dt = 0.0015571541836840814 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0032e+04 | 11520 |      1 | 3.836e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.613035719440251 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.6420112385062238, dt = 0.0015571541836840814 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (2.1%)
   patch tree reduce : 2.14 us    (0.8%)
   gen split merge   : 1.04 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.5%)
   LB compute        : 262.86 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.34 us    (62.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.395225694444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.507354365491605e-28,9.399567449882878e-28,-7.44571380893162e-17)
    sum a = (-2.2124036855405627e-25,1.6472369232385675e-25,3.5326484891732606e-15)
    sum e = 1.2362297193365722e-09
    sum de = -4.145732484225146e-12
Info: cfl dt = 0.0015572512538945173 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0107e+04 | 11520 |      1 | 3.826e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.650159067962393 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.643568392689908, dt = 0.0015572512538945173 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (2.2%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.5%)
   LB compute        : 265.44 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.395225694444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.760155799122206e-28,1.2884099093974465e-27,-6.89446776171436e-17)
    sum a = (-2.2492391722936263e-25,3.7650555110171217e-25,3.5460966783371352e-15)
    sum e = 1.2362233514636737e-09
    sum de = -4.032699678110841e-12
Info: cfl dt = 0.0015573442010697641 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0071e+04 | 11520 |      1 | 3.831e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.63356840216629 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.6451256439438025, dt = 0.0015573442010697641 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (2.0%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.5%)
   LB compute        : 285.98 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.395486111111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2655264180034122e-27,1.9783818468842383e-27,-6.341171341399314e-17)
    sum a = (1.2610606699859098e-25,-9.31052986518609e-26,3.558557552770008e-15)
    sum e = 1.2362171591713355e-09
    sum de = -3.919778386166994e-12
Info: cfl dt = 0.0015574323803377334 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8304e+04 | 11520 |      1 | 4.070e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.77487393906619 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.6466829881448724, dt = 0.0015574323803377334 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (2.0%)
   patch tree reduce : 1.99 us    (0.7%)
   gen split merge   : 1.05 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 270.17 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.395486111111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.395814304644556e-28,1.4966150091265011e-27,-5.785979771873899e-17)
    sum a = (-2.276588411705163e-25,-4.1355045647298795e-25,3.5700314797354396e-15)
    sum e = 1.2362111423090541e-09
    sum de = -3.806989411194633e-12
Info: cfl dt = 0.0015575152813106364 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0123e+04 | 11520 |      1 | 3.824e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.6606411279077 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 2.64824042052521, dt = 0.0015575152813106364 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.0%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 303.51 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.395486111111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4255374979783642e-27,5.842224696810273e-28,-5.2290484201530295e-17)
    sum a = (1.9827921197710886e-25,6.537605459535655e-26,3.5805191559848276e-15)
    sum e = 1.2362053006942878e-09
    sum de = -3.6943534351970786e-12
Info: cfl dt = 0.0015575925427352704 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9977e+04 | 11520 |      1 | 3.843e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.590490994162547 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.6497979358065207, dt = 0.0015575925427352704 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.5%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.3%)
   LB compute        : 341.53 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 us    (71.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.395486111111112
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.071631509895736e-28,1.072750338987002e-27,-4.67053269070011e-17)
    sum a = (8.472161953204652e-26,-4.345838522597712e-25,3.5900216122164534e-15)
    sum e = 1.2361996341118556e-09
    sum de = -3.58189096741068e-12
Info: cfl dt = 0.0015576639624202448 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9844e+04 | 11520 |      1 | 3.860e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.526346231331068 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.651355528349256, dt = 0.0015576639624202448 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.8%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 302.94 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 us    (64.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.396006944444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.5983593015191175e-28,-1.1268385913729013e-29,-4.110587914001902e-17)
    sum a = (-3.605883492393284e-26,1.7376752549843237e-25,3.598540200726453e-15)
    sum e = 1.2361941423135242e-09
    sum de = -3.4696223528652907e-12
Info: cfl dt = 0.0015577295019997132 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9959e+04 | 11520 |      1 | 3.845e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.58294108617552 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.652913192311676, dt = 0.0015577295019997132 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (2.2%)
   patch tree reduce : 2.18 us    (0.8%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 265.14 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.37 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.396006944444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.347559514896437e-28,7.530748986036743e-28,-3.54936923560606e-17)
    sum a = (-7.006176150589499e-25,3.740271996398249e-26,3.606076602558449e-15)
    sum e = 1.2361888250176033e-09
    sum de = -3.3575677474570094e-12
Info: cfl dt = 0.001557789287040667 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0013e+04 | 11520 |      1 | 3.838e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.610114947622865 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.654470921813676, dt = 0.001557789287040667 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (1.9%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 303.73 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.396006944444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.50539558808018e-27,6.847711439881477e-28,-2.9870315018501294e-17)
    sum a = (1.8996348989234343e-25,-6.689787611697314e-25,3.6126328249976744e-15)
    sum e = 1.2361836819087044e-09
    sum de = -3.2457471202574572e-12
Info: cfl dt = 0.00155784360084841 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9993e+04 | 11520 |      1 | 3.841e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.60063828464596 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.6560287111007166, dt = 0.00155784360084841 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (1.8%)
   patch tree reduce : 1.86 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 329.88 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.396006944444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4881203797453822e-27,-8.785873817042867e-28,-2.4237291483315678e-17)
    sum a = (2.628966441607965e-25,8.576073807307562e-26,3.618211194462611e-15)
    sum e = 1.2361787126375862e-09
    sum de = -3.1341802264186083e-12
Info: cfl dt = 0.0015578928750190001 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7673e+04 | 11520 |      1 | 4.163e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.471959616918424 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.657586554701565, dt = 0.0015578928750190001 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (2.0%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.5%)
   LB compute        : 299.51 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.396267361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0245563192328995e-27,-1.964166344654611e-28,-1.859616092953915e-17)
    sum a = (-5.197409515674376e-25,-2.7959465848711e-26,3.62281435329693e-15)
    sum e = 1.2361739168211852e-09
    sum de = -3.0228865889528397e-12
Info: cfl dt = 0.0015579376744928384 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7649e+04 | 11520 |      1 | 4.166e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.460753642944898 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.6591444475765837, dt = 0.0015579376744928384 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (1.9%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 301.59 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.39609375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4187156964361107e-27,-3.2400943496553115e-28,-1.2948456346730271e-17)
    sum a = (2.9892219400633804e-25,-1.669049051171881e-25,3.6264452665909775e-15)
    sum e = 1.2361692940427909e-09
    sum de = -2.9118855150349134e-12
Info: cfl dt = 0.0015579786788625812 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9645e+04 | 11520 |      1 | 3.886e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.432838211373143 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.6607023852510765, dt = 0.0015579786788625812 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (2.2%)
   patch tree reduce : 2.22 us    (0.8%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 261.03 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.39609375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3473522357154137e-27,-6.965596092517412e-28,-7.295703573018153e-18)
    sum a = (-6.160513258927295e-26,-4.428031863050285e-25,3.629107204459381e-15)
    sum e = 1.236164843852307e-09
    sum de = -2.8011960419421735e-12
Info: cfl dt = 0.0015580166602135088 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0076e+04 | 11520 |      1 | 3.830e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.643005208066425 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.662260363929939, dt = 0.0015580166602135088 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 22.92 us   (7.4%)
   patch tree reduce : 1.72 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 272.36 us  (87.9%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.396614583333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.714181537153115e-27,-1.6138062226292828e-27,-1.6394204655467541e-18)
    sum a = (-3.044530645323628e-25,1.756654684058709e-26,3.630803731152391e-15)
    sum e = 1.2361605657667602e-09
    sum de = -2.690836964423141e-12
Info: cfl dt = 0.0015580524582209652 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0067e+04 | 11520 |      1 | 3.831e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.639212282998356 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.6638183805901523, dt = 0.0015580524582209652 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (2.0%)
   patch tree reduce : 1.95 us    (0.7%)
   gen split merge   : 1.63 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 267.60 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.396614583333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.3871642158776694e-27,-1.2346683765781235e-27,4.018883821550578e-18)
    sum a = (3.9407313810099895e-25,2.3378641607061883e-25,3.631538708225152e-15)
    sum e = 1.2361564592708303e-09
    sum de = -2.580826797795329e-12
Info: cfl dt = 0.0015580869534822803 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0053e+04 | 11520 |      1 | 3.833e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.632473228626482 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.6653764330483734, dt = 0.0015580869534822803 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (2.1%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.5%)
   LB compute        : 267.63 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.396614583333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.268993613669175e-27,-6.861580222544529e-28,9.67770947022498e-18)
    sum a = (2.8530582318775447e-25,-2.260715589947301e-25,3.631316286966545e-15)
    sum e = 1.2361525238175862e-09
    sum de = -2.4711838060667786e-12
Info: cfl dt = 0.0015581210398949888 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6867e+04 | 11520 |      1 | 4.288e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.081453271559726 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.6669345200018557, dt = 0.0015581210398949888 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (2.1%)
   patch tree reduce : 1.83 us    (0.7%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 256.30 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.396614583333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.761603447382529e-28,-1.4118420750986013e-27,1.5335566503668615e-17)
    sum a = (-2.9468666778104225e-25,8.204841167374342e-26,3.630140912541717e-15)
    sum e = 1.2361487588292073e-09
    sum de = -2.3619259697795253e-12
Info: cfl dt = 0.0015581555968386812 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9988e+04 | 11520 |      1 | 3.842e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.601384416557961 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.668492641041751, dt = 0.0015581555968386812 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (1.7%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 343.92 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.396614583333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7887262439670147e-27,-1.0157149702852045e-27,2.0990975196065073e-17)
    sum a = (2.7101265577521404e-25,3.8513401423552937e-25,3.628017309268536e-15)
    sum e = 1.2361451636978806e-09
    sum de = -2.2530710062261687e-12
Info: cfl dt = 0.0015581914622635087 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8327e+04 | 11520 |      1 | 4.067e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.7931834839779 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 2.6700507966385896, dt = 0.0015581914622635087 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (1.8%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 316.00 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.396614583333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.479312950195422e-28,-1.6087787889139268e-28,2.6642466340179232e-17)
    sum a = (-3.509745090973014e-25,2.5503096407344707e-25,3.624950467486759e-15)
    sum e = 1.2361417377866685e-09
    sum de = -2.144636369487576e-12
Info: cfl dt = 0.001558229407443546 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9868e+04 | 11520 |      1 | 3.857e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.543764926440431 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.671608988100853, dt = 0.001558229407443546 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.9%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 309.95 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.396614583333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.936428779328509e-27,1.1060354173783246e-28,3.22885813958059e-17)
    sum a = (-1.3623027834261827e-25,-3.5859263141411535e-25,3.620945647984953e-15)
    sum e = 1.2361384804304142e-09
    sum de = -2.036639238360281e-12
Info: cfl dt = 0.0015582701142223426 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5915e+04 | 11520 |      1 | 4.445e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.619462833356858 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.6731672175082966, dt = 0.0015582701142223426 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (2.0%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 307.40 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.396614583333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.962779466388306e-27,-9.104855818293042e-28,3.7927872570500045e-17)
    sum a = (-8.598922626744939e-26,6.354537528383381e-26,3.616008369167539e-15)
    sum e = 1.2361353909366854e-09
    sum de = -1.929096539976713e-12
Info: cfl dt = 0.0015583141554580539 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7360e+04 | 11520 |      1 | 4.211e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.323250345671463 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.674725487622519, dt = 0.0015583141554580539 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (2.0%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.5%)
   LB compute        : 281.14 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.396614583333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0650617385283076e-27,-4.848873138569239e-28,4.355890279141756e-17)
    sum a = (-2.3939460505999015e-25,-5.999635380035903e-26,3.610144395960388e-15)
    sum e = 1.2361324685866389e-09
    sum de = -1.8220249479560605e-12
Info: cfl dt = 0.0015583619792775417 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8348e+04 | 11520 |      1 | 4.064e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.804689536952516 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.676283801777977, dt = 0.0015583619792775417 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.6%)
   patch tree reduce : 1.96 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 344.76 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.396354166666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.5470019360693332e-27,-7.268975713271654e-28,4.9180245601507486e-17)
    sum a = (5.410489492509493e-26,-9.572511169691125e-26,3.603359750214763e-15)
    sum e = 1.2361297126358696e-09
    sum de = -1.7154408823441777e-12
Info: cfl dt = 0.001558413897607608 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6411e+04 | 11520 |      1 | 4.362e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.861686885143772 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.6778421637572545, dt = 0.001558413897607608 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.8%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 317.11 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.396354166666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2859221024373963e-27,-9.219273275263213e-28,5.47904850473579e-17)
    sum a = (5.812157175996778e-25,5.577330947945997e-26,3.595660691935682e-15)
    sum e = 1.2361271223152135e-09
    sum de = -1.6093605365446935e-12
Info: cfl dt = 0.0015584700793291216 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9139e+04 | 11520 |      1 | 3.954e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.190631031409614 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.679400577654862, dt = 0.0015584700793291216 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (1.7%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.4%)
   LB compute        : 337.99 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.396354166666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.2019372969344e-28,-6.6379461021028295e-28,6.03882154914653e-17)
    sum a = (2.3798831049795676e-25,-4.1654333977167435e-25,3.587053727464821e-15)
    sum e = 1.236124696831411e-09
    sum de = -1.5037998867017823e-12
Info: cfl dt = 0.0015585305482314449 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9566e+04 | 11520 |      1 | 3.896e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.399133202004666 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.680959047734191, dt = 0.0015585305482314449 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.9%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 300.55 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.396354166666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.446088641798116e-28,-1.6984057968738945e-27,6.597204145552295e-17)
    sum a = (1.4863729131298377e-25,-2.3103172911417033e-25,3.57754559863658e-15)
    sum e = 1.2361224353677195e-09
    sum de = -1.3987746860982455e-12
Info: cfl dt = 0.0015585951857913182 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9741e+04 | 11520 |      1 | 3.873e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.484919503206589 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.682517578282422, dt = 0.0015585951857913182 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.8%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 305.66 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.396354166666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.761031548237408e-28,-1.844374734402507e-27,7.154057744798608e-17)
    sum a = (-2.567083933365431e-25,1.5902500952760906e-25,3.567143279585473e-15)
    sum e = 1.2361203370844331e-09
    sum de = -1.2943004813387807e-12
Info: cfl dt = 0.00155866373864416 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0021e+04 | 11520 |      1 | 3.837e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.621974775667649 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.6840761734682137, dt = 0.00155866373864416 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (2.1%)
   patch tree reduce : 1.87 us    (0.7%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 263.80 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.396354166666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.382717631506194e-27,-1.331403135652905e-27,7.709244782616214e-17)
    sum a = (-1.5031680089347927e-25,9.420509311704085e-26,3.555853980857412e-15)
    sum e = 1.2361184011193062e-09
    sum de = -1.1903926134327738e-12
Info: cfl dt = 0.0015587358304637049 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8143e+04 | 11520 |      1 | 4.093e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.70777242103719 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.685634837206858, dt = 0.0015587358304637049 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (1.8%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 313.97 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.396354166666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5155112255049081e-27,-1.2641395397371071e-27,8.262628672371036e-17)
    sum a = (-3.8205167728866626e-25,3.1999442238457786e-25,3.5436851425820895e-15)
    sum e = 1.2361166265878812e-09
    sum de = -1.0870662366710008e-12
Info: cfl dt = 0.0015588109778195372 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7293e+04 | 11520 |      1 | 4.221e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.294444866056727 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.6871935730373218, dt = 0.0015588109778195372 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.9%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (0.5%)
   LB compute        : 306.19 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.396354166666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.325448133027092e-27,-5.2493342379648385e-28,8.814073802388607e-17)
    sum a = (7.542745483040283e-26,-1.1771822724397768e-26,3.5306444373789052e-15)
    sum e = 1.2361150125837077e-09
    sum de = -9.843363020333074e-13
Info: cfl dt = 0.0015588886094618129 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9956e+04 | 11520 |      1 | 3.846e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.592625473201517 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.6887523840151415, dt = 0.0015588886094618129 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (1.6%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 361.80 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.396354166666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8237449201912187e-27,-8.758136251716765e-28,9.363445542409572e-17)
    sum a = (7.116765823544669e-27,7.83946808811626e-26,3.516739766805488e-15)
    sum e = 1.2361135581785383e-09
    sum de = -8.822175724238698e-13
Info: cfl dt = 0.0015589680881963161 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7724e+04 | 11520 |      1 | 4.155e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.505783497998136 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.6903112726246032, dt = 0.0015589680881963161 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (1.9%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.60 us    (0.5%)
   LB compute        : 314.00 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.396354166666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.916665764033661e-27,-6.61367573244249e-28,9.910610257874259e-17)
    sum a = (8.299079545569773e-27,9.327588467861643e-26,3.5019792544443444e-15)
    sum e = 1.2361122624224153e-09
    sum de = -7.807246368231785e-13
Info: cfl dt = 0.0015590487344271011 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9946e+04 | 11520 |      1 | 3.847e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.589019886381115 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.6918702407127997, dt = 0.0015590487344271011 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.9%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 301.27 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (63.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.396354166666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9024502618040337e-27,-5.1089128135014465e-28,1.0455435331950465e-16)
    sum a = (3.2136535155082047e-25,7.961235999897849e-26,3.4863712422809933e-15)
    sum e = 1.2361111243436919e-09
    sum de = -6.798718912092276e-13
Info: cfl dt = 0.0015591298530578087 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9880e+04 | 11520 |      1 | 3.855e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.557450351293241 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.6934292894472267, dt = 0.0015591298530578087 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.7%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 322.67 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.39609375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1420942523022575e-27,-3.8191160258376945e-28,1.099778919763317e-16)
    sum a = (-3.416598879412297e-25,2.5354076337630225e-25,3.4699242931638724e-15)
    sum e = 1.2361101429490666e-09
    sum de = -5.796735481915005e-13
Info: cfl dt = 0.0015592107581029887 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6812e+04 | 11520 |      1 | 4.297e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.063800761726037 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.6949884193002847, dt = 0.0015592107581029887 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.7%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 320.21 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.39609375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.162836656302818e-27,1.107769015211206e-28,1.153754137994419e-16)
    sum a = (-5.372419684099417e-27,2.0716078039452677e-25,3.452647185045659e-15)
    sum e = 1.2361093172235747e-09
    sum de = -4.801436310082777e-13
Info: cfl dt = 0.0015592907978435528 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9581e+04 | 11520 |      1 | 3.894e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.413498881653398 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.6965476300583875, dt = 0.0015592907978435528 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.8%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 1.44 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 301.37 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.39609375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.912851848801322e-27,4.4111396857666885e-28,1.2074562545685468e-16)
    sum a = (-2.4645866950941523e-25,-5.816650661579607e-25,3.4345489131249703e-15)
    sum e = 1.2361086461305907e-09
    sum de = -3.812959664771252e-13
Info: cfl dt = 0.001559326154223374 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6744e+04 | 11520 |      1 | 4.307e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.031999344121692 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.698106920856231, dt = 0.001559326154223374 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (2.2%)
   patch tree reduce : 1.69 us    (0.6%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.5%)
   LB compute        : 266.93 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.39609375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.5033152706807223e-27,-1.0769976536775614e-27,1.2608709717053781e-16)
    sum a = (-1.3681935488623138e-25,4.8252823392593885e-25,3.415639224288352e-15)
    sum e = 1.2361081286283196e-09
    sum de = -2.831469083173353e-13
Info: cfl dt = 0.0015593387714966617 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9949e+04 | 11520 |      1 | 3.847e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.59364497962028 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.6996662470104544, dt = 0.0003337529895457436 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (2.0%)
   patch tree reduce : 1.69 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.5%)
   LB compute        : 264.78 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.395920138888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.467949874889942e-27,-1.0037531452383229e-28,1.2721233378667644e-16)
    sum a = (1.3451436320763228e-25,1.2172630543359945e-25,3.411558328605405e-15)
    sum e = 1.2361081103340094e-09
    sum de = -2.6256751030863366e-13
Info: cfl dt = 0.001559341978451857 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0580e+04 | 11520 |      1 | 3.767e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.189407452277686 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 1415                                                    [SPH][rank=0]
Info: time since start : 658.2350018640001 (s)                                        [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[-6.16347519e-18 -3.22045596e-13  2.11105348e-10 ... -6.20788670e-12
  7.08708101e-10 -4.12020341e-10]
(11520, 3)
[[-6.16347519e-18 -3.22045596e-13  2.11105348e-10 -1.07727508e-12
   1.21115348e-09]
 [ 4.77177009e-06  2.19254491e-06 -1.29630321e-10 -8.17645287e-11
   2.25475985e-07]
 [ 2.74543210e-05  3.13458058e-05  2.70324125e-05 -7.34637309e-08
  -2.26912817e-08]
 ...
 [ 3.48750193e-05  4.27879284e-05  4.76713549e-05  2.56859286e-05
  -1.63599452e-08]
 [ 1.30452353e-05  1.18738816e-05  2.24717400e-06 -1.55448840e-09
   1.88959521e-07]
 [ 1.43616342e-07 -4.01232943e-14 -6.20788670e-12  7.08708101e-10
  -4.12020341e-10]]
compute original rho
Info: Dumping state to _to_trash/dusty_settle/dump/0000027.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.30 us   (68.5%)
Info: dump to _to_trash/dusty_settle/dump/0000027.sham                      [Shamrock Dump][rank=0]
              - took 1.20 ms, bandwidth = 2.46 GB/s
Info: evolve_until (target_time = 2.80s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 2.7, dt = 0.001559341978451857 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.36 us    (1.0%)
   patch tree reduce : 1.24 us    (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 316.59 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.39609375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.231487130484921e-27,3.3891837632831105e-29,1.3253143889485204e-16)
    sum a = (6.742426576294925e-25,-1.45006444011797e-25,3.3916050835274337e-15)
    sum e = 1.236107704648672e-09
    sum de = -1.6494728831146162e-13
Info: cfl dt = 0.0015593548075448892 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7480e+04 | 11520 |      1 | 4.192e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.39072139985401 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.701559341978452, dt = 0.0015593548075448892 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.7%)
   patch tree reduce : 1.98 us    (0.5%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 342.33 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.395920138888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.565420942694371e-28,-3.7463049168566763e-28,1.3780459762089688e-16)
    sum a = (-6.82427319718092e-26,4.140580539184556e-25,3.3709337663756636e-15)
    sum e = 1.2361075235445673e-09
    sum de = -6.839599803211988e-14
Info: cfl dt = 0.0015593681575691003 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9999e+04 | 11520 |      1 | 3.840e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.618250253814914 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.703118696785997, dt = 0.0015593681575691003 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (1.8%)
   patch tree reduce : 1.88 us    (0.5%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 326.05 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.395920138888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4142691120646351e-27,7.012403234005209e-28,1.4304500743854023e-16)
    sum a = (-2.802721485202001e-25,-4.8396503980983096e-26,3.3494821794170702e-15)
    sum e = 1.2361074921650176e-09
    sum de = 2.741497732703857e-14
Info: cfl dt = 0.0015593812816434326 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7651e+04 | 11520 |      1 | 4.166e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.474590839655507 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.704678064943566, dt = 0.0015593812816434326 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.6%)
   patch tree reduce : 1.91 us    (0.5%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 335.77 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.35 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.395659722222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0366307340690528e-27,2.373295433214618e-28,1.4825140179146073e-16)
    sum a = (7.971082835588615e-26,9.88566828222282e-26,3.3272606982021756e-15)
    sum e = 1.2361076096138072e-09
    sum de = 1.224719215608079e-13
Info: cfl dt = 0.0015593939190379003 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8618e+04 | 11520 |      1 | 4.025e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.945550752442019 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.7062374462252095, dt = 0.0015593939190379003 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (2.2%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 273.51 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.395659722222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6139795824125709e-27,5.2007934986441595e-28,1.5342258601036263e-16)
    sum a = (3.567168785589377e-25,3.018152220698505e-25,3.3042795931871935e-15)
    sum e = 1.2361078747068568e-09
    sum de = 2.1676261261027477e-13
Info: cfl dt = 0.0015594058833226724 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0012e+04 | 11520 |      1 | 3.838e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.625069070875732 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.707796840144247, dt = 0.0015594058833226724 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.8%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 309.41 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.395659722222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.369810337151335e-28,1.1788465263593429e-27,1.5855738075051966e-16)
    sum a = (6.693143857101773e-26,-4.337073451954664e-25,3.280549315856029e-15)
    sum e = 1.2361082862419717e-09
    sum de = 3.1027505692655527e-13
Info: cfl dt = 0.001559417073393461 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9934e+04 | 11520 |      1 | 3.848e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.587225550828313 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.70935624602757, dt = 0.001559417073393461 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (2.0%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 282.65 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.395659722222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.992457908728313e-28,-1.0973674282139178e-28,1.6365462279661864e-16)
    sum a = (1.125396237975944e-25,-2.6613639179088527e-25,3.256080481606063e-15)
    sum e = 1.2361088429981686e-09
    sum de = 4.0299749849855947e-13
Info: cfl dt = 0.0015594274797316595 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9978e+04 | 11520 |      1 | 3.843e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.608896932796437 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.7109156631009634, dt = 0.0015594274797316595 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.8%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 306.73 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.395225694444443
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.3955283550719955e-28,-3.442058497185993e-28,1.6871316561694564e-16)
    sum a = (-5.296626786845843e-26,-2.103367316243655e-25,3.230883872214181e-15)
    sum e = 1.2361095437360665e-09
    sum de = 4.949184220771339e-13
Info: cfl dt = 0.00155943718729355 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9966e+04 | 11520 |      1 | 3.844e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.603238167855661 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.712475090580695, dt = 0.00155943718729355 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (2.2%)
   patch tree reduce : 1.99 us    (0.7%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 267.47 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.395052083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.510517711187286e-28,-6.932657733692665e-28,1.7373187993259104e-16)
    sum a = (1.9781876839269556e-25,-2.144127668490362e-25,3.2049704252963624e-15)
    sum e = 1.23611038719831e-09
    sum de = 5.860265644371315e-13
Info: cfl dt = 0.001559446374884864 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9572e+04 | 11520 |      1 | 3.896e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.411037324325978 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.7140345277679883, dt = 0.001559446374884864 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (2.0%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 275.97 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.395052083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.88874588872551e-28,-1.0448394138776117e-27,1.7870965424754186e-16)
    sum a = (6.637516169840274e-25,3.2811459463379426e-25,3.1783512301079038e-15)
    sum e = 1.2361113721100686e-09
    sum de = 6.763109091786885e-13
Info: cfl dt = 0.0015594553110212567 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0034e+04 | 11520 |      1 | 3.836e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.636452325618098 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.715593974142873, dt = 0.0015594553110212567 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (2.3%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 266.30 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.394791666666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.118724600956094e-28,-5.0014297478628006e-29,1.8364539534986538e-16)
    sum a = (-5.273743295451809e-26,-1.2553051251807435e-25,3.1510375198925552e-15)
    sum e = 1.2361124971795471e-09
    sum de = 7.657606961015376e-13
Info: cfl dt = 0.001559464346450099 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9603e+04 | 11520 |      1 | 3.892e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.42623945915774 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.7171534294538944, dt = 0.001559464346450099 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (1.6%)
   patch tree reduce : 1.94 us    (0.5%)
   gen split merge   : 991.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.52 us    (0.4%)
   LB compute        : 380.77 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (73.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.394791666666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8188300762651346e-28,-6.067592415084853e-28,1.885380287611879e-16)
    sum a = (-5.632112639465049e-27,7.977323787786989e-27,3.1230406643270735e-15)
    sum e = 1.236113761098566e-09
    sum de = 8.54365431454177e-13
Info: cfl dt = 0.0015594739035572568 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9841e+04 | 11520 |      1 | 3.861e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.542257907989692 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.7187128938003444, dt = 0.0015594739035572568 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (1.9%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 310.71 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (61.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.394618055555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2140903821620907e-28,-4.946821416127037e-28,1.9338649912803882e-16)
    sum a = (-1.1089755993028915e-25,-1.374590524865646e-25,3.094372164123003e-15)
    sum e = 1.2361151625431637e-09
    sum de = 9.421148814791772e-13
Info: cfl dt = 0.0015594844630182297 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9898e+04 | 11520 |      1 | 3.853e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.570378642926826 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.7202723677039016, dt = 0.0015594844630182297 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.7%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 328.09 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.394184027777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.824888718481459e-29,-8.004887993329803e-28,1.981897705517379e-16)
    sum a = (1.4691478850623283e-25,-2.896592340656862e-25,3.0650436421251818e-15)
    sum e = 1.2361167001742142e-09
    sum de = 1.0289990830943178e-12
Info: cfl dt = 0.0015594965481308457 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9820e+04 | 11520 |      1 | 3.863e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.532637108102483 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.7218318521669196, dt = 0.0015594965481308457 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.8%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 298.56 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (47.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.394184027777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.6044358441329625e-28,-1.4447804339233476e-27,2.0294682684435194e-16)
    sum a = (-1.903351732677132e-25,6.478108381911166e-26,3.035066836459453e-15)
    sum e = 1.2361183726380577e-09
    sum de = 1.1150083429330058e-12
Info: cfl dt = 0.0015595107073490622 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9571e+04 | 11520 |      1 | 3.896e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.41126837200723 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.7233913487150505, dt = 0.0015595107073490622 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.8%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 298.95 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.394184027777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.222740470928976e-29,-1.0139813724523231e-27,2.0765667171081437e-16)
    sum a = (-1.789641583622776e-25,4.1470433919055375e-26,3.0044535986039938e-15)
    sum e = 1.2361201785671297e-09
    sum de = 1.2001332313985933e-12
Info: cfl dt = 0.001559527495606224 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9937e+04 | 11520 |      1 | 3.848e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.589556539221556 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.7249508594223997, dt = 0.001559527495606224 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (1.9%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 299.89 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 20.53 us   (6.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.393923611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.2383607518224302e-28,-9.715949054383732e-28,2.1231832887109392e-16)
    sum a = (4.479186867902949e-25,7.367236038439371e-26,2.9732158849440932e-15)
    sum e = 1.236122116580548e-09
    sum de = 1.2843645902704417e-12
Info: cfl dt = 0.001559547455063057 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9879e+04 | 11520 |      1 | 3.856e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.561431897606283 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.726510386918006, dt = 0.001559547455063057 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.9%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 297.12 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.393923611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.681857947069984e-28,-8.700060724315239e-28,2.1693084210100843e-16)
    sum a = (2.2376864763353047e-25,-3.0438198702121466e-25,2.9413657516109225e-15)
    sum e = 1.2361241852847094e-09
    sum de = 1.3676935225762695e-12
Info: cfl dt = 0.0015595710958501972 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9554e+04 | 11520 |      1 | 3.898e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.403638926047172 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.7280699343730688, dt = 0.0015595710958501972 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.8%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 318.48 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.393663194444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0668561063552053e-27,-1.619093696019571e-27,2.2149327521238692e-16)
    sum a = (1.959284533157217e-25,5.775054715177451e-25,2.908915347580296e-15)
    sum e = 1.2361263832737972e-09
    sum de = 1.4501113890052199e-12
Info: cfl dt = 0.0015595988773438592 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9913e+04 | 11520 |      1 | 3.851e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.578660210226188 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.729629505468919, dt = 0.0015595988773438592 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (2.1%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 292.76 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.393663194444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2918771050632092e-27,-4.091290885600072e-29,2.2600471196666575e-16)
    sum a = (3.3568001557648864e-25,1.9391054543824778e-25,2.875876914921023e-15)
    sum e = 1.2361287091302655e-09
    sum de = 1.5316098078631798e-12
Info: cfl dt = 0.0015596311908723755 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9815e+04 | 11520 |      1 | 3.864e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.53092324067424 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.731189104346263, dt = 0.0015596311908723755 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (1.9%)
   patch tree reduce : 2.29 us    (0.7%)
   gen split merge   : 1.69 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 298.46 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.393402777777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.961739307688577e-27,7.801190247966239e-31,2.304642559531435e-16)
    sum a = (-1.8139674284137676e-25,-1.2068961392953636e-25,2.8422627792018357e-15)
    sum e = 1.236131161425251e-09
    sum de = 1.6121806430730398e-12
Info: cfl dt = 0.0015596683443465408 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9894e+04 | 11520 |      1 | 3.854e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.56981842076773 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.732748735537135, dt = 0.0015596683443465408 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.8%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 315.55 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.393142361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2832091158988024e-27,-4.431942859761265e-28,2.3487103040890173e-16)
    sum a = (-3.760021142910434e-25,2.817651229738775e-26,2.808085354447273e-15)
    sum e = 1.2361337387189208e-09
    sum de = 1.6918160061335758e-12
Info: cfl dt = 0.0015597105491716786 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6995e+04 | 11520 |      1 | 4.268e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.157115901826346 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.7343084038814816, dt = 0.0015597105491716786 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.7%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 326.12 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3928819444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.277071803290941e-28,-2.9202455494886956e-28,2.392241780355867e-16)
    sum a = (-2.40762067030567e-27,3.656920612593312e-26,2.7733571367154347e-15)
    sum e = 1.2361364395607585e-09
    sum de = 1.7705082451868185e-12
Info: cfl dt = 0.0015597272884428652 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9482e+04 | 11520 |      1 | 3.907e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.369958349760168 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.7358681144306534, dt = 0.0015597272884428652 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.8%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 1.40 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 310.95 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3928819444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.217253727857772e-28,-2.1297249376947833e-28,2.435227758582966e-16)
    sum a = (4.440756471143634e-25,4.6001989310294e-25,2.7380914023457876e-15)
    sum e = 1.2361392624355463e-09
    sum de = 1.848248403269249e-12
Info: cfl dt = 0.0015597158771462267 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9810e+04 | 11520 |      1 | 3.864e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.529943626911228 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.737427841719096, dt = 0.0015597158771462267 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (1.8%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 338.59 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.392447916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.852869363783626e-27,8.625516017501339e-28,2.4776591802761303e-16)
    sum a = (-4.845503024382117e-25,1.2291451338825635e-25,2.702301605087621e-15)
    sum e = 1.2361422058008684e-09
    sum de = 1.9250277112001937e-12
Info: cfl dt = 0.0015597072480168278 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9731e+04 | 11520 |      1 | 3.875e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.491165600385887 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.7389875575962424, dt = 0.0015597072480168278 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (1.8%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.4%)
   LB compute        : 319.95 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.392013888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.730702536360744e-28,7.5108126109586075e-28,2.519528064698451e-16)
    sum a = (-1.0465938148844876e-25,1.493120075895412e-25,2.666000583771347e-15)
    sum e = 1.2361452681537423e-09
    sum de = 2.000839224013831e-12
Info: cfl dt = 0.0015597019710006017 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9679e+04 | 11520 |      1 | 3.882e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.465889953831132 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.7405472648442593, dt = 0.0015597019710006017 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (2.0%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.5%)
   LB compute        : 291.87 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.392013888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.13838397666043e-28,1.0268966763072894e-27,2.560826633519206e-16)
    sum a = (-9.481115891941619e-26,1.0716963115046102e-25,2.629201237044256e-15)
    sum e = 1.236148447984779e-09
    sum de = 2.0756762347027875e-12
Info: cfl dt = 0.0015597005551826223 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9940e+04 | 11520 |      1 | 3.848e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.592883516820931 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.74210696681526, dt = 0.0015597005551826223 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.8%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1.55 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 315.83 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (72.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.392013888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.5712115357356563e-28,1.1523224795162576e-27,2.6015473197430406e-16)
    sum a = (-3.3020184642458347e-26,-3.659971744779183e-26,2.591916517377654e-15)
    sum e = 1.2361517437761738e-09
    sum de = 2.149532289036262e-12
Info: cfl dt = 0.0015597034338466083 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8440e+04 | 11520 |      1 | 4.051e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.86173164519333 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.7436666673704426, dt = 0.0015597034338466083 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.6%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 331.58 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.391753472222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.021946972284817e-28,9.819964924356615e-28,2.641682765678746e-16)
    sum a = (6.248968354752235e-25,-2.4314056325728023e-26,2.5541594232891565e-15)
    sum e = 1.2361551540020629e-09
    sum de = 2.2224011836248056e-12
Info: cfl dt = 0.001559710951788163 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9976e+04 | 11520 |      1 | 3.843e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.610680945084221 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.745226370804289, dt = 0.001559710951788163 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (2.0%)
   patch tree reduce : 1.71 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.5%)
   LB compute        : 275.94 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.391232638888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8320661897890492e-27,9.691678684723392e-28,2.681225820581467e-16)
    sum a = (4.766936370595933e-25,8.747873352546107e-26,2.5159430032198698e-15)
    sum e = 1.2361586771288297e-09
    sum de = 2.2942769569697116e-12
Info: cfl dt = 0.001559723355171292 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0038e+04 | 11520 |      1 | 3.835e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.640952507143133 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.746786081756077, dt = 0.001559723355171292 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.9%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.5%)
   LB compute        : 293.00 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.391232638888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.481818657552993e-27,1.1912850908102669e-27,2.720169538360487e-16)
    sum a = (2.6762867280542957e-25,-3.70241021972812e-26,2.4772803495264336e-15)
    sum e = 1.236162311615308e-09
    sum de = 2.3651538784324676e-12
Info: cfl dt = 0.0015597407841721406 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9944e+04 | 11520 |      1 | 3.847e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.59506393273215 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.7483458051112484, dt = 0.0015597407841721406 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.0%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 300.48 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.390711805555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7484460042501503e-27,9.760155799122206e-28,2.758507175091983e-16)
    sum a = (-1.8484590908967758e-25,-6.142899904945221e-26,2.4381845994066134e-15)
    sum e = 1.236166055912922e-09
    sum de = 2.435026450858821e-12
Info: cfl dt = 0.001559763268583263 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9883e+04 | 11520 |      1 | 3.855e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.56572581693957 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.7499055458954205, dt = 0.001559763268583263 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (2.0%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 298.23 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.390538194444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1250442235460036e-27,9.012541733692109e-28,2.796232186713746e-16)
    sum a = (1.9798311346725272e-25,-2.1330187735772582e-27,2.3986689295109774e-15)
    sum e = 1.236169908465795e-09
    sum de = 2.5038893984004785e-12
Info: cfl dt = 0.0015597907264720246 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7705e+04 | 11520 |      1 | 4.158e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.504261975777826 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.751465309164004, dt = 0.0015597907264720246 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (2.1%)
   patch tree reduce : 1.68 us    (0.6%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.5%)
   LB compute        : 254.50 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.390104166666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.692970873597946e-27,9.304219569074402e-28,2.833338226783316e-16)
    sum a = (3.4735059618744615e-26,3.012022218761436e-26,2.3587465583786547e-15)
    sum e = 1.2361738677107685e-09
    sum de = 2.5717376631818145e-12
Info: cfl dt = 0.0015598229658963325 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9986e+04 | 11520 |      1 | 3.842e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.61610861686787 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.753025099890476, dt = 0.0015598229658963325 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (2.1%)
   patch tree reduce : 1.70 us    (0.6%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 265.79 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.390104166666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.590341881891368e-27,1.031404030672781e-27,2.8698191445857023e-16)
    sum a = (-2.531352748431913e-25,-1.795036540078703e-25,2.318430739810854e-15)
    sum e = 1.2361779320774042e-09
    sum de = 2.6385663985759953e-12
Info: cfl dt = 0.00155985968960997 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6233e+04 | 11520 |      1 | 4.391e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.78731975228423 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.754584922856372, dt = 0.00155985968960997 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.8%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 307.44 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.390104166666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.979075286017391e-27,5.380220874347383e-28,2.905668983429211e-16)
    sum a = (-1.6284759274911251e-25,-2.0739654969979864e-25,2.2777347696011495e-15)
    sum e = 1.2361820999879418e-09
    sum de = 2.7043709640386927e-12
Info: cfl dt = 0.0015599005025808857 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9932e+04 | 11520 |      1 | 3.849e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.590380071798952 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.756144782545982, dt = 0.0015599005025808857 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.7%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 305.81 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.55 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.390104166666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.814036772327083e-27,2.472977308605298e-28,2.940881979529372e-16)
    sum a = (6.098901191946691e-25,-1.6326192263117117e-25,2.2366719783963654e-15)
    sum e = 1.2361863698572408e-09
    sum de = 2.769146924709297e-12
Info: cfl dt = 0.0015599449221346976 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7123e+04 | 11520 |      1 | 4.247e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.22155268842681 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.757704683048563, dt = 0.0015599449221346976 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (1.8%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 311.21 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.389756944444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.352084769659449e-27,4.8974138778899173e-29,2.975452561138421e-16)
    sum a = (-1.4122650729698243e-25,7.106641612200641e-26,2.1952557347654587e-15)
    sum e = 1.236190740092725e-09
    sum de = 2.8328900450415325e-12
Info: cfl dt = 0.0015599923903964097 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9929e+04 | 11520 |      1 | 3.849e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.589868308578366 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.7592646279706976, dt = 0.0015599923903964097 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.00 us    (2.4%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 270.62 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.389756944444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.534520031672587e-27,3.058499976660986e-28,3.009375348256052e-16)
    sum a = (-1.93588789680465e-25,4.9057767538357365e-25,2.1534994452296994e-15)
    sum e = 1.2361952090943254e-09
    sum de = 2.895596281011772e-12
Info: cfl dt = 0.0015600422886638179 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9995e+04 | 11520 |      1 | 3.841e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.622274983608701 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.760824620361094, dt = 0.0015600422886638179 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (2.0%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 1.38 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.5%)
   LB compute        : 293.06 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (72.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.389756944444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1912676607620727e-27,1.364211474640185e-27,3.0426451528187836e-16)
    sum a = (-3.356883368460865e-25,9.057840645065299e-26,2.11141654465482e-15)
    sum e = 1.2361997752544294e-09
    sum de = 2.957261796492709e-12
Info: cfl dt = 0.0015600939534098006 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9944e+04 | 11520 |      1 | 3.847e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.59786818415748 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.7623846626497577, dt = 0.0015600939534098006 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    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.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.4%)
   LB compute        : 339.63 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.389583333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5806945040212482e-27,1.2363152945193608e-27,3.0752569791404304e-16)
    sum a = (1.9463449589325903e-25,-4.276993885458327e-25,2.069020505239097e-15)
    sum e = 1.2362044369579166e-09
    sum de = 3.017882945768893e-12
Info: cfl dt = 0.0015601466933423678 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9226e+04 | 11520 |      1 | 3.942e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.24841293382598 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.7639447566031676, dt = 0.0015601466933423678 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.7%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 315.02 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.389149305555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2730934784740743e-27,1.6911246859757926e-28,3.1072060251126675e-16)
    sum a = (-2.0755188006562483e-25,2.6686450288069543e-25,2.0263248241229595e-15)
    sum e = 1.2362091925821832e-09
    sum de = 3.0774562814894403e-12
Info: cfl dt = 0.0015601998071241936 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9901e+04 | 11520 |      1 | 3.853e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.578128289125946 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.76550490329651, dt = 0.0015601998071241936 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.1%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 296.88 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (63.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.388802083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6736153478636907e-27,1.0635189305269086e-27,3.138487683483234e-16)
    sum a = (7.919490964082065e-26,6.59058420930851e-26,1.9833430218971042e-15)
    sum e = 1.2362140404972479e-09
    sum de = 3.135978560251469e-12
Info: cfl dt = 0.0015602526012592902 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9971e+04 | 11520 |      1 | 3.844e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.612714993118795 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.767065103103634, dt = 0.0015602526012592902 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.6%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 336.56 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3883680555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.971447455552713e-27,1.054114162283527e-27,3.1690975435762997e-16)
    sum a = (2.117014198384097e-25,-4.4092882032811705e-25,1.9400886420427326e-15)
    sum e = 1.2362189790659362e-09
    sum de = 3.1934467362288347e-12
Info: cfl dt = 0.0015603044076664772 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9911e+04 | 11520 |      1 | 3.851e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.583908545088622 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.7686253557048937, dt = 0.0015603044076664772 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (2.2%)
   patch tree reduce : 1.93 us    (0.7%)
   gen split merge   : 1.04 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 269.19 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 us    (62.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.387934027777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4485335791616705e-27,-5.218129476972973e-29,3.1990313933782183e-16)
    sum a = (1.9098977980940922e-25,1.6312046104800804e-25,1.896575242688744e-15)
    sum e = 1.2362240066441e-09
    sum de = 3.2498579676738076e-12
Info: cfl dt = 0.0015603546004723944 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9995e+04 | 11520 |      1 | 3.841e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.625219035342893 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.7701856601125603, dt = 0.0015603546004723944 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.5%)
   patch tree reduce : 1.70 us    (0.4%)
   gen split merge   : 981.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.3%)
   LB compute        : 379.49 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (73.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.387934027777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7002519844960478e-27,6.957144803082114e-28,3.228285221683833e-16)
    sum a = (-3.129185694698892e-25,7.287906601606719e-26,1.85281639135895e-15)
    sum e = 1.2362291215809347e-09
    sum de = 3.3052096169304294e-12
Info: cfl dt = 0.0015604026115782971 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6800e+04 | 11520 |      1 | 4.299e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.0678420730159 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 2.771746014713033, dt = 0.0015604026115782971 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (2.0%)
   patch tree reduce : 1.77 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (0.5%)
   LB compute        : 289.83 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.387239583333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8251317984575238e-27,7.616562078764372e-28,3.2568552204178905e-16)
    sum a = (3.03853933121319e-25,-3.3433474365817268e-25,1.808825658891647e-15)
    sum e = 1.2362343222193605e-09
    sum de = 3.3594992617013054e-12
Info: cfl dt = 0.0015604479445995724 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9946e+04 | 11520 |      1 | 3.847e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.602583305341101 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.773306417324611, dt = 0.0015604479445995724 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (1.9%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.4%)
   LB compute        : 311.35 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3870659722222225
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7938662674716428e-27,-7.996220004165396e-29,3.2847377869634957e-16)
    sum a = (-4.28564800584007e-25,-8.442011219695178e-25,1.7646166160718749e-15)
    sum e = 1.2362396068964924e-09
    sum de = 3.4127246819880524e-12
Info: cfl dt = 0.0015604901868126796 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9872e+04 | 11520 |      1 | 3.857e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.566538820591878 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.774866865269211, dt = 0.0015604901868126796 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.7%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 315.91 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.38689236111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5519167799954173e-27,-1.8313294107100748e-27,3.3119295265423007e-16)
    sum a = (-2.7058549726919204e-25,-1.2140454967581666e-25,1.7202028224459884e-15)
    sum e = 1.2362449739441494e-09
    sum de = 3.4648838831288326e-12
Info: cfl dt = 0.001560529018804719 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9965e+04 | 11520 |      1 | 3.845e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.612309785791409 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.7764273554560233, dt = 0.001560529018804719 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.9%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 1.48 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 304.88 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.37 us    (63.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.386631944444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.27038049193548e-27,-1.4307816314228304e-27,3.338427254324199e-16)
    sum a = (4.487577481414095e-25,4.431006716931509e-26,1.675597823465799e-15)
    sum e = 1.2362504216894746e-09
    sum de = 3.5159750818020416e-12
Info: cfl dt = 0.0015605642215908194 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9987e+04 | 11520 |      1 | 3.842e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.623623257200421 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.777987884474828, dt = 0.0015605642215908194 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.8%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 323.27 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.01 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.386371527777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5119832598451292e-27,-1.2578119076470901e-27,3.364227997477488e-16)
    sum a = (-1.4944445446397334e-25,1.4384215970723387e-25,1.630815144231555e-15)
    sum e = 1.2362559484555626e-09
    sum de = 3.565996715412659e-12
Info: cfl dt = 0.0015605956810280078 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6267e+04 | 11520 |      1 | 4.386e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.809676157946967 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.779548448696419, dt = 0.0015605956810280078 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (2.0%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 296.82 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.386111111111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8268653962904053e-27,-9.365437242548026e-28,3.3893289969500403e-16)
    sum a = (5.806027174059709e-26,7.705634335417818e-26,1.5858682763596047e-15)
    sum e = 1.2362615525621708e-09
    sum de = 3.6149474430273386e-12
Info: cfl dt = 0.0015605969313596648 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9984e+04 | 11520 |      1 | 3.842e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.622614689595308 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.781109044377447, dt = 0.0015605969313596648 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.7%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 297.53 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.385677083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0560470297973244e-27,-8.761603447382529e-28,3.4137272891678434e-16)
    sum a = (-1.5641213087389023e-25,-3.4381509676706784e-25,1.5407714460966452e-15)
    sum e = 1.2362672322307963e-09
    sum de = 3.662825325467504e-12
Info: cfl dt = 0.0015605670092889992 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9940e+04 | 11520 |      1 | 3.848e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.601107849293909 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.7826696413088063, dt = 0.0015605670092889992 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (2.2%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.5%)
   LB compute        : 267.84 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.385416666666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6507318564696564e-27,-1.717887102520899e-27,3.437420170168431e-16)
    sum a = (-6.935611784399895e-25,-3.2135980403775525e-25,1.4955388703211773e-15)
    sum e = 1.2362729856708491e-09
    sum de = 3.70962870957273e-12
Info: cfl dt = 0.0015605438928279047 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9986e+04 | 11520 |      1 | 3.842e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.623484602593406 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.784230208318095, dt = 0.0015605438928279047 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 23.91 us   (7.8%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 269.02 us  (87.4%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.38515625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4908941362779924e-28,-2.279887014981678e-27,3.460405768346907e-16)
    sum a = (9.908413085790223e-26,-1.5235412506668148e-25,1.4501836084937101e-15)
    sum e = 1.2362788112259181e-09
    sum de = 3.755357362906735e-12
Info: cfl dt = 0.0015605275751648673 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9969e+04 | 11520 |      1 | 3.844e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.614990710554697 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.7857907522109233, dt = 0.0015605275751648673 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.8%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 288.29 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.384722222222221
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.042446296309313e-28,-2.365775952614495e-27,3.482682389063237e-16)
    sum a = (1.3738416106018413e-25,-2.1102392980531966e-26,1.4047186766342188e-15)
    sum e = 1.2362847072422465e-09
    sum de = 3.8000112157647805e-12
Info: cfl dt = 0.0015605179347462834 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9848e+04 | 11520 |      1 | 3.860e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.555690729495774 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.787351279786088, dt = 0.0015605179347462834 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.7%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 310.97 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.384461805555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1407073740359524e-27,-2.2648697237543432e-27,3.5042485295461427e-16)
    sum a = (1.7698785683279284e-25,-1.9393741620465744e-25,1.3591570299254108e-15)
    sum e = 1.236290672066601e-09
    sum de = 3.843590380371335e-12
Info: cfl dt = 0.0015605147417091173 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9844e+04 | 11520 |      1 | 3.860e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.55369490211548 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.7889117977208344, dt = 0.0015605147417091173 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (1.9%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 303.35 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 17.08 us   (94.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.384201388888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4707844014165685e-27,-2.68454125413556e-27,3.5251028765256445e-16)
    sum a = (-2.084699934779188e-25,1.2751582875629011e-25,1.313511569932259e-15)
    sum e = 1.2362967040460875e-09
    sum de = 3.886095155482346e-12
Info: cfl dt = 0.0015605176672232426 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9927e+04 | 11520 |      1 | 3.849e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.594430371233495 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.7904723124625437, dt = 0.0015605176672232426 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (1.7%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 345.16 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.384201388888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.390613511145912e-28,-2.2550640610121077e-27,3.5452443045714976e-16)
    sum a = (-8.62360905988517e-26,6.371596131058933e-26,1.2677951391398315e-15)
    sum e = 1.2363028015279825e-09
    sum de = 3.927526012943013e-12
Info: cfl dt = 0.00156052629526725 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7544e+04 | 11520 |      1 | 4.182e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.432345630199146 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.792032830129767, dt = 0.00156052629526725 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.8%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 300.63 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3837673611111105
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.342072771825232e-28,-2.2047030439669033e-27,3.5646718745966137e-16)
    sum a = (1.5761594120904306e-25,4.1010683773775234e-26,1.2220205239369665e-15)
    sum e = 1.2363089628595437e-09
    sum de = 3.967883599557035e-12
Info: cfl dt = 0.0015605401364447435 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7027e+04 | 11520 |      1 | 4.262e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.180101472782662 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.7935933564250344, dt = 0.0015605401364447435 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.7%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 313.85 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.383506944444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2183725569490385e-27,-2.1386746365070336e-27,3.583384832895591e-16)
    sum a = (1.5199076296090953e-25,-1.8380436351168243e-25,1.176200452048794e-15)
    sum e = 1.236315186387895e-09
    sum de = 4.007168729399533e-12
Info: cfl dt = 0.0015605586434015981 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6737e+04 | 11520 |      1 | 4.309e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.038727192274473 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.7951538965614793, dt = 0.0015605586434015981 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.7%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 294.66 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.383246527777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.458995936152975e-27,-2.6636730702222505e-27,3.6013826104068137e-16)
    sum a = (-4.624573316559713e-25,-2.0601105831175986e-25,1.1303475925886163e-15)
    sum e = 1.2363214704599367e-09
    sum de = 4.0453823909331506e-12
Info: cfl dt = 0.0015605812273617617 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9766e+04 | 11520 |      1 | 3.870e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.516235163117313 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.796714455204881, dt = 0.0015605812273617617 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.9%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 288.29 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.38263888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.694011032297675e-28,-2.9332908731811282e-27,3.61866482236049e-16)
    sum a = (-3.6211946284532924e-25,1.2656997777867003e-25,1.0844745518475231e-15)
    sum e = 1.2363278134223373e-09
    sum de = 4.082525746112566e-12
Info: cfl dt = 0.0015606072752744839 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9376e+04 | 11520 |      1 | 3.922e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.325971961434174 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.798275036432243, dt = 0.0015606072752744839 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.8%)
   patch tree reduce : 2.34 us    (0.7%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 307.34 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.382204861111112
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.080317399457664e-28,-2.521453038007244e-27,3.635231268084266e-16)
    sum a = (-5.113198267344329e-25,2.4859584891779136e-25,1.0385938695812855e-15)
    sum e = 1.236334213621591e-09
    sum de = 4.11860012709976e-12
Info: cfl dt = 0.0015606361670542186 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9942e+04 | 11520 |      1 | 3.847e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.602306246301795 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.7998356437075174, dt = 0.0001643562924824593 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (2.1%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.5%)
   LB compute        : 267.87 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.381510416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.973406232964138e-28,-2.346836396290266e-27,3.6365802538278084e-16)
    sum a = (1.761168972815532e-25,4.257958981253289e-25,1.0339392706609654e-15)
    sum e = 1.2363349185566319e-09
    sum de = 4.121810255610438e-12
Info: cfl dt = 0.001560640467277935 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9063e+04 | 11520 |      1 | 3.964e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4926977804195996 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 1480                                                    [SPH][rank=0]
Info: time since start : 686.8235044600001 (s)                                        [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[-7.63181584e-19 -1.40158428e-13  2.38845579e-10 ... -2.06151055e-12
  4.59319339e-09 -3.45964436e-10]
(11520, 3)
[[-7.63181584e-19 -1.40158428e-13  2.38845579e-10 -9.44193056e-13
   2.21701662e-09]
 [ 4.47182423e-06  1.37935428e-06 -2.20529906e-11 -4.03871700e-11
   1.40327245e-07]
 [ 2.71978060e-05  3.04529814e-05  2.38529623e-05 -2.56156035e-08
   8.90116348e-08]
 ...
 [ 3.48677371e-05  4.25533799e-05  4.58638083e-05  1.73279372e-05
  -9.75467173e-09]
 [ 1.27385981e-05  1.08327385e-05 -9.23934492e-09 -6.67634988e-10
   2.35359738e-07]
 [ 5.86594834e-08 -2.52122541e-15 -2.06151055e-12  4.59319339e-09
  -3.45964436e-10]]
compute original rho
Info: Dumping state to _to_trash/dusty_settle/dump/0000028.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.20 us   (69.4%)
Info: dump to _to_trash/dusty_settle/dump/0000028.sham                      [Shamrock Dump][rank=0]
              - took 1.23 ms, bandwidth = 2.40 GB/s
Info: evolve_until (target_time = 2.90s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 2.8, dt = 0.001560640467277935 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.49 us    (0.9%)
   patch tree reduce : 1.29 us    (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 379.18 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.381510416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.667989164406933e-29,-1.693074983537784e-27,3.6527125034304907e-16)
    sum a = (1.0003830310512014e-25,-3.076463517405303e-25,9.878861199514445e-16)
    sum e = 1.2363413516139984e-09
    sum de = 4.157235881916517e-12
Info: cfl dt = 0.0015606706722449246 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9674e+04 | 11520 |      1 | 3.882e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.471843460905614 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.8015606404672777, dt = 0.0015606706722449246 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.1%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 295.51 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.380902777777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0748306563864597e-29,-2.7223986968111074e-27,3.667770790324981e-16)
    sum a = (1.4722544923788519e-25,1.1800461760596968e-25,9.420307238549255e-16)
    sum e = 1.2363478673302365e-09
    sum de = 4.191062837979683e-12
Info: cfl dt = 0.0015607035921502998 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9692e+04 | 11520 |      1 | 3.880e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.481016124710095 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.8031213111395226, dt = 0.0015607035921502998 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.9%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 299.87 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.67 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.380902777777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.856969228588525e-28,-2.223230870805823e-27,3.6821152718129284e-16)
    sum a = (-3.439458100436671e-25,4.499227258851058e-25,8.96205479933537e-16)
    sum e = 1.236354434730703e-09
    sum de = 4.223828066746633e-12
Info: cfl dt = 0.0015607375577970056 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9979e+04 | 11520 |      1 | 3.843e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.62119947552887 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.804682014731673, dt = 0.0015607375577970056 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.7%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 322.92 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.380902777777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.28949293769367e-28,-1.242816286392666e-27,3.6957450892194173e-16)
    sum a = (3.7096219867129063e-25,-7.332009330475221e-26,8.504233332277789e-16)
    sum e = 1.2363610525835013e-09
    sum de = 4.255531591671051e-12
Info: cfl dt = 0.0015607720882486165 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8939e+04 | 11520 |      1 | 3.981e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.114361088832752 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.80624275228947, dt = 0.0015607720882486165 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (1.8%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 314.68 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.380642361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.88874588872551e-28,-1.817937367451066e-27,3.7086609896584877e-16)
    sum a = (-2.4830113728620154e-25,-7.578180222744378e-26,8.046964335870661e-16)
    sum e = 1.2363677192361973e-09
    sum de = 4.286175635375411e-12
Info: cfl dt = 0.001560806762995745 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6311e+04 | 11520 |      1 | 4.378e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.832853212679602 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.8078035243777184, dt = 0.001560806762995745 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (1.8%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 317.88 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.380381944444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.973406232964138e-28,-1.8864578217957027e-27,3.720863899672332e-16)
    sum a = (-5.590228915822635e-25,-2.9599761446226715e-25,7.590368424218051e-16)
    sum e = 1.2363744330396838e-09
    sum de = 4.315762591129251e-12
Info: cfl dt = 0.0015608412341752437 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9897e+04 | 11520 |      1 | 3.853e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.5821398445014 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 2.809364331140714, dt = 0.0015608412341752437 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.7%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 19.57 us   (5.7%)
   LB compute        : 305.01 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.379774305555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4770253536149414e-27,-2.577881647467533e-27,3.7323549306974823e-16)
    sum a = (2.473136799605923e-25,-2.23214243046575e-25,7.134565262163991e-16)
    sum e = 1.2363811923471173e-09
    sum de = 4.3442950280062715e-12
Info: cfl dt = 0.0015608752319405562 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9917e+04 | 11520 |      1 | 3.851e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.592635900397456 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.810925172374889, dt = 0.0015608752319405562 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.7%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 326.82 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.379774305555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.763926844758051e-28,-2.822730671389118e-27,3.743135378720752e-16)
    sum a = (6.165506020685994e-26,1.423273419208621e-25,6.679673504217018e-16)
    sum e = 1.2363879955144914e-09
    sum de = 4.3717756876870936e-12
Info: cfl dt = 0.0015609085671463342 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9958e+04 | 11520 |      1 | 3.845e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.61295022824405 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.81248604760683, dt = 0.0015609085671463342 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (2.0%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.56 us    (0.5%)
   LB compute        : 274.31 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (62.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.379600694444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.443497195247554e-28,-2.3631322159193512e-27,3.753206723680272e-16)
    sum a = (-2.9697501692044566e-25,-6.024772548612682e-26,6.225810732735577e-16)
    sum e = 1.2363948409012376e-09
    sum de = 4.398207486221686e-12
Info: cfl dt = 0.0015609411313048734 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8130e+04 | 11520 |      1 | 4.095e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.721582917123017 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.8140469561739763, dt = 0.0015609411313048734 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.8%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 304.35 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.379253472222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2870230311311415e-27,-2.5821723021039143e-27,3.762570628582437e-16)
    sum a = (-4.266592298461038e-26,-1.3887921583126104e-25,5.773093395091552e-16)
    sum e = 1.2364017268708314e-09
    sum de = 4.423593518266185e-12
Info: cfl dt = 0.0015609728938978582 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9870e+04 | 11520 |      1 | 3.857e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.57053413172119 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.815607897305281, dt = 0.0015609728938978582 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.8%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 316.92 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.378732638888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1372401783701896e-27,-2.84641595178086e-27,3.771228938332656e-16)
    sum a = (2.929086898436391e-25,-1.0916950961047298e-25,5.321636782191853e-16)
    sum e = 1.2364086517914142e-09
    sum de = 4.4479370491809996e-12
Info: cfl dt = 0.0015610038971713164 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4280e+04 | 11520 |      1 | 4.745e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.843776738259832 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.817168870199179, dt = 0.0015610038971713164 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (1.7%)
   patch tree reduce : 1.99 us    (0.5%)
   gen split merge   : 1.23 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.67 us    (0.5%)
   LB compute        : 341.79 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.378125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.500419974160079e-28,-3.0323443193573883e-27,3.7791836783195186e-16)
    sum a = (-4.9469947759103246e-26,1.0193555257342554e-28,4.871554958403564e-16)
    sum e = 1.2364156140363757e-09
    sum de = 4.471241518204759e-12
Info: cfl dt = 0.0015610342486943878 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9858e+04 | 11520 |      1 | 3.858e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.565344908330346 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.8187298740963502, dt = 0.0015610342486943878 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (1.9%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 316.43 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (63.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3778645833333325
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.440601898726911e-28,-2.952858858719777e-27,3.786437052713034e-16)
    sum a = (4.96788116260088e-25,1.6655021100058056e-26,4.4229607026619853e-16)
    sum e = 1.236422611984941e-09
    sum de = 4.493510535227722e-12
Info: cfl dt = 0.0015610641119138276 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9978e+04 | 11520 |      1 | 3.843e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.623722006374555 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.8202909083450445, dt = 0.0015610641119138276 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (2.0%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 316.95 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.377604166666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.555895104812284e-28,-2.8624300617621013e-27,3.792991442436911e-16)
    sum a = (-2.9984308117516464e-27,-5.26320302062789e-26,3.9759655229658435e-16)
    sum e = 1.2364296440226886e-09
    sum de = 4.5147478796142274e-12
Info: cfl dt = 0.0015610658809467896 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9864e+04 | 11520 |      1 | 3.857e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.568753250141153 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.821851972456958, dt = 0.0015610658809467896 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (1.8%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 322.99 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.376996527777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.478169151905181e-29,-2.9990809109389767e-27,3.79884929249307e-16)
    sum a = (2.6873817541847366e-25,-4.774938658192513e-25,3.5306875128900016e-16)
    sum e = 1.2364367084164694e-09
    sum de = 4.534957128889211e-12
Info: cfl dt = 0.001561062677698213 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9923e+04 | 11520 |      1 | 3.850e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.597239496858997 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.823413038337905, dt = 0.001561062677698213 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (1.9%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 305.38 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.375781250000001
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.045341592829955e-28,-4.075818524941606e-27,3.804013362839771e-16)
    sum a = (-5.0324264771147194e-26,4.101484440857415e-25,3.0872366777414864e-16)
    sum e = 1.2364438035413448e-09
    sum de = 4.554142409090263e-12
Info: cfl dt = 0.0015610615265306133 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9665e+04 | 11520 |      1 | 3.883e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.471761459122165 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.824974101015603, dt = 0.0015610615265306133 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (1.9%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 311.28 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3753472222222225
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.349311013126839e-28,-2.73032990689654e-27,3.8084866019676697e-16)
    sum a = (-9.243266269270292e-26,-1.5474510319779148e-25,2.6457196921295487e-16)
    sum e = 1.2364509278112084e-09
    sum de = 4.572308084462628e-12
Info: cfl dt = 0.0015610628593441525 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9871e+04 | 11520 |      1 | 3.857e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.571933889314886 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.8265351625421338, dt = 0.0015610628593441525 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (2.0%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 303.64 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.37517361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9693671381532552e-28,-3.4565990490092856e-27,3.812272119125088e-16)
    sum a = (-3.172345346346307e-25,-3.652621289967766e-26,2.2062417563470487e-16)
    sum e = 1.2364580796491195e-09
    sum de = 4.589458675611645e-12
Info: cfl dt = 0.0015610670348595015 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9585e+04 | 11520 |      1 | 3.894e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.432579699037381 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.828096225401478, dt = 0.0015610670348595015 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.9%)
   patch tree reduce : 1.97 us    (0.7%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 272.81 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (63.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.374826388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.88874588872551e-28,-3.40662809147648e-27,3.8153731840604395e-16)
    sum a = (1.5656191372665117e-25,-7.313425161706732e-26,1.7689065772683686e-16)
    sum e = 1.236465257487098e-09
    sum de = 4.6055988574774315e-12
Info: cfl dt = 0.001561058894207628 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0019e+04 | 11520 |      1 | 3.838e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.644394589339125 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.8296572924363375, dt = 0.001561058894207628 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.0%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 306.54 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.37421875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4146158316312115e-28,-3.540678543904033e-27,3.817793196641721e-16)
    sum a = (1.402855103932944e-25,-1.28610769147538e-25,1.333820698020709e-16)
    sum e = 1.236472459694899e-09
    sum de = 4.6207332994476365e-12
Info: cfl dt = 0.0015610227214176802 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9916e+04 | 11520 |      1 | 3.851e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.594071599833699 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.831218351330545, dt = 0.0015610227214176802 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.7%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 327.54 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.64 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.37421875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3839829697844665e-28,-3.752849248675804e-27,3.819535723714741e-16)
    sum a = (-1.9560253692314001e-25,-1.7637208288255337e-25,9.01093491666802e-17)
    sum e = 1.2364796845762606e-09
    sum de = 4.634866721955357e-12
Info: cfl dt = 0.0015609856522864664 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9941e+04 | 11520 |      1 | 3.848e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.605653680851194 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.8327793740519627, dt = 0.0015609856522864664 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.6%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 330.55 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.373697916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9554983554902042e-28,-4.113372587996399e-27,3.8206045692260737e-16)
    sum a = (1.2054468515070749e-25,2.362990927695971e-25,4.70825111823688e-17)
    sum e = 1.2364869305668519e-09
    sum de = 4.648004314254674e-12
Info: cfl dt = 0.0015609476466731463 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9956e+04 | 11520 |      1 | 3.846e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.612670742124703 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.834340359704249, dt = 0.0015609476466731463 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.7%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 316.17 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.50 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.373090277777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.052579834131562e-28,-3.419001646008671e-27,3.821003681194146e-16)
    sum a = (3.892468017342572e-25,-1.1836173875954324e-25,4.311427545397015e-18)
    sum e = 1.2364941961109186e-09
    sum de = 4.660151400290915e-12
Info: cfl dt = 0.0015609087641757383 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9952e+04 | 11520 |      1 | 3.846e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.61064006701018 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.8359013073509223, dt = 0.0015609087641757383 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.79 us    (1.9%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 344.39 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.372916666666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0110342561364246e-27,-3.8308936561148324e-27,3.820737161531834e-16)
    sum a = (2.095794960909629e-25,3.092738533860394e-25,-3.819418752336422e-17)
    sum e = 1.2365014796614784e-09
    sum de = 4.671313449503315e-12
Info: cfl dt = 0.0015608691664176148 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7424e+04 | 11520 |      1 | 4.201e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.376943802653134 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.837462216115098, dt = 0.0015608691664176148 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (1.9%)
   patch tree reduce : 1.80 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.5%)
   LB compute        : 306.35 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.372743055555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1996497003539195e-27,-3.0427675763275877e-27,3.8198092633009953e-16)
    sum a = (2.7332874247994353e-25,1.9959952008663132e-26,-8.042477738576668e-17)
    sum e = 1.236508779681044e-09
    sum de = 4.681496079542943e-12
Info: cfl dt = 0.001560829115422956 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9922e+04 | 11520 |      1 | 3.850e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.595244964077933 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.8390230852815157, dt = 0.001560829115422956 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.8%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 308.71 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.372482638888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7100209023541998e-27,-3.2289018086467712e-27,3.8182243878298185e-16)
    sum a = (4.8745997304091983e-26,-4.26732734394218e-25,-1.223709535484392e-16)
    sum e = 1.236516094642334e-09
    sum de = 4.690705052790006e-12
Info: cfl dt = 0.0015607889681361709 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9934e+04 | 11520 |      1 | 3.848e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.600505877123917 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.8405839143969387, dt = 0.0015607889681361709 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.6%)
   patch tree reduce : 1.92 us    (0.5%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 334.53 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.48 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.372482638888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.581734662720977e-27,-4.244757633755897e-27,3.81598708142431e-16)
    sum a = (4.647221038648476e-25,-4.319903899017807e-25,-1.6402349456428024e-16)
    sum e = 1.2365234230289535e-09
    sum de = 4.698946270386142e-12
Info: cfl dt = 0.0015607491672672432 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7851e+04 | 11520 |      1 | 4.136e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.584050979450764 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.842144703365075, dt = 0.0015607491672672432 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.6%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 332.61 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.372482638888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6336818277134025e-27,-4.939908694768422e-27,3.813102031963842e-16)
    sum a = (-4.942945091372714e-25,2.609453064401052e-25,-2.0537335165597187e-16)
    sum e = 1.2365307633360216e-09
    sum de = 4.706225772827917e-12
Info: cfl dt = 0.001560710228765332 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5913e+04 | 11520 |      1 | 4.446e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.638850886864919 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.843705452532342, dt = 0.001560710228765332 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.7%)
   patch tree reduce : 2.15 us    (0.6%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 317.87 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.372482638888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1053419782451722e-27,-3.9891819732433585e-27,3.809574065282953e-16)
    sum a = (5.037280551046787e-26,3.110726344974371e-25,-2.4641165368059345e-16)
    sum e = 1.2365381140707392e-09
    sum de = 4.712549734504286e-12
Info: cfl dt = 0.0015606727263181989 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9731e+04 | 11520 |      1 | 3.875e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.50056138698302 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.8452661627611073, dt = 0.0015606727263181989 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.7%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1.18 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 317.83 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.372222222222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.624034449843283e-27,-3.4803710092926714e-27,3.805408141321263e-16)
    sum a = (-2.507309480087681e-25,-5.281093750263226e-26,-2.871297062676657e-16)
    sum e = 1.2365454737528842e-09
    sum de = 4.717924456529729e-12
Info: cfl dt = 0.001560637273396152 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9889e+04 | 11520 |      1 | 3.854e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.577014415355322 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.8468268354874255, dt = 0.001560637273396152 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.86 us    (2.0%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.4%)
   LB compute        : 318.84 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.372222222222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.846835690766276e-28,-3.808107679598898e-27,3.800609350331361e-16)
    sum a = (-2.061622280427871e-25,5.570535244441102e-26,-3.2751899967236553e-16)
    sum e = 1.236552840915189e-09
    sum de = 4.7223563712497126e-12
Info: cfl dt = 0.0015606045034128805 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9928e+04 | 11520 |      1 | 3.849e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.596036316471707 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.848387472760822, dt = 0.0015606045034128805 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.9%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.56 us    (0.5%)
   LB compute        : 290.98 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.371527777777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.906653766199444e-28,-3.668032974702082e-27,3.7951829088884766e-16)
    sum a = (1.5937034221591901e-25,1.8251317984575237e-25,-3.675712005693284e-16)
    sum e = 1.2365602141036451e-09
    sum de = 4.725852032609966e-12
Info: cfl dt = 0.0015605750486405406 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0071e+04 | 11520 |      1 | 3.831e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.66540528721128 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.8499480772642345, dt = 0.0015605750486405406 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (2.2%)
   patch tree reduce : 1.86 us    (0.7%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.5%)
   LB compute        : 264.46 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.370746527777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2599789049381917e-27,-3.2685686940603886e-27,3.789134156219305e-16)
    sum a = (-2.830868179616663e-25,-1.839832708080358e-26,-4.0727816391394716e-16)
    sum e = 1.2365675918776795e-09
    sum de = 4.728418112596844e-12
Info: cfl dt = 0.0015605495185666296 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8362e+04 | 11520 |      1 | 4.062e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.831644958019933 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.851508652312875, dt = 0.0015605495185666296 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (2.1%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 1.07 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.5%)
   LB compute        : 284.28 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.369878472222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.417207278181773e-28,-3.4407582988113324e-27,3.782468550314584e-16)
    sum a = (-9.183907879472433e-27,-1.1409362089498926e-25,-4.466319225204142e-16)
    sum e = 1.2365749728102142e-09
    sum de = 4.730061399754638e-12
Info: cfl dt = 0.0015605284783820521 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9994e+04 | 11520 |      1 | 3.841e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.627457084702328 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.853069201831442, dt = 0.0015605284783820521 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.7%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 324.97 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.36875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.379640025003502e-28,-3.689182868263235e-27,3.775191664526087e-16)
    sum a = (3.567141048024051e-25,3.2373205931227014e-25,-4.856246932213641e-16)
    sum e = 1.2365823554876258e-09
    sum de = 4.730788791936364e-12
Info: cfl dt = 0.0015605124283017764 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9842e+04 | 11520 |      1 | 3.860e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.55306593805346 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.854629730309824, dt = 0.0015605124283017764 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.8%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 1.08 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 280.09 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.368489583333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4631565709518904e-27,-2.8649004386739576e-27,3.7673091841855757e-16)
    sum a = (-2.719976860638572e-25,1.1672036833137116e-25,-5.242488712420129e-16)
    sum e = 1.2365897385095844e-09
    sum de = 4.730607299460789e-12
Info: cfl dt = 0.0015605017843793208 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0006e+04 | 11520 |      1 | 3.839e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.632620566153442 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.8561902427381254, dt = 0.0015605017843793208 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (2.1%)
   patch tree reduce : 1.94 us    (0.7%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 274.83 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.368489583333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.429628412584503e-28,-2.830575201582906e-27,3.758826903647315e-16)
    sum a = (-1.4377558955045123e-25,2.9260669710115114e-25,-5.624970303495635e-16)
    sum e = 1.2365971204888026e-09
    sum de = 4.729524038294171e-12
Info: cfl dt = 0.0015604968614248266 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0022e+04 | 11520 |      1 | 3.837e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.640258711316779 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.8577507445225048, dt = 0.0015604968614248266 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (1.8%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 315.01 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.368315972222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.31319140820889e-28,-2.231790510105675e-27,3.749750723541661e-16)
    sum a = (-1.7358445756728008e-25,3.449568442998035e-25,-6.003619210060313e-16)
    sum e = 1.2366045000506938e-09
    sum de = 4.727546227212162e-12
Info: cfl dt = 0.001560497858613161 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9922e+04 | 11520 |      1 | 3.850e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.591502057950272 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.8593112413839297, dt = 0.001560497858613161 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (1.9%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 312.86 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.368315972222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.268993613669175e-28,-1.6662042171281226e-27,3.740086648403557e-16)
    sum a = (-8.87338583564672e-26,-1.5334400942925676e-25,-6.378364686796403e-16)
    sum e = 1.2366118758329485e-09
    sum de = 4.724681186845056e-12
Info: cfl dt = 0.0015605048482481832 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9909e+04 | 11520 |      1 | 3.852e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.58545159002029 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.8608717392425427, dt = 0.0015605048482481832 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (1.9%)
   patch tree reduce : 2.19 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 320.01 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.367881944444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.113237857884889e-29,-2.2912095758276846e-27,3.7298407846254456e-16)
    sum a = (1.75652293062341e-25,-1.4017386669285685e-25,-6.749137681055234e-16)
    sum e = 1.2366192464850612e-09
    sum de = 4.720936338737107e-12
Info: cfl dt = 0.0015605177680627113 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9881e+04 | 11520 |      1 | 3.855e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.571592261257445 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.862432244090791, dt = 0.0015605177680627113 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.0%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 299.80 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.367881944444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.505906717231284e-28,-2.472977308605298e-27,3.7190193388321246e-16)
    sum a = (-3.4374193893852026e-25,-3.758363823382199e-25,-7.115870830975121e-16)
    sum e = 1.236626610667821e-09
    sum de = 4.7163191971910665e-12
Info: cfl dt = 0.0015605364173374204 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9995e+04 | 11520 |      1 | 3.841e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.627522585620792 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.8639927618588534, dt = 0.0015605364173374204 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.8%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 306.78 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.367361111111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.716833753697693e-28,-3.2451217833706674e-27,3.7076286164575333e-16)
    sum a = (-6.527092922277062e-25,2.8961485396116444e-27,-7.47849841648123e-16)
    sum e = 1.236633967052763e-09
    sum de = 4.710837378659542e-12
Info: cfl dt = 0.0015605604570100937 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9252e+04 | 11520 |      1 | 3.938e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.265155507933246 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.8655532982761907, dt = 0.0015605604570100937 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (1.7%)
   patch tree reduce : 1.91 us    (0.5%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 338.30 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.367361111111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6413704281720968e-27,-2.9929699785780698e-27,3.69567502077571e-16)
    sum a = (-1.657680116583845e-25,2.3301704535238607e-25,-7.836956385477919e-16)
    sum e = 1.2366413143216597e-09
    sum de = 4.704498588514551e-12
Info: cfl dt = 0.0015605894138201997 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9841e+04 | 11520 |      1 | 3.860e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.552600433735906 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.867113858733201, dt = 0.0015605894138201997 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (1.8%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 322.95 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.367361111111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5200185798703999e-27,-2.405757052635322e-27,3.683165051939578e-16)
    sum a = (4.884030502620073e-25,3.4713424317790254e-25,-8.191182243400136e-16)
    sum e = 1.2366486511659961e-09
    sum de = 4.697310630809912e-12
Info: cfl dt = 0.0015606226884194363 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8926e+04 | 11520 |      1 | 3.983e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.106790546390318 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.8686744481470208, dt = 0.0015606226884194363 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.7%)
   patch tree reduce : 1.90 us    (0.5%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.4%)
   LB compute        : 331.58 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.366927083333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.2452951431539558e-28,-1.8150335910809897e-27,3.67010530652161e-16)
    sum a = (-1.7863269445663069e-25,2.3590521934196646e-25,-8.541115127881875e-16)
    sum e = 1.2366559762865278e-09
    sum de = 4.6892814011766264e-12
Info: cfl dt = 0.0015606595672606554 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9849e+04 | 11520 |      1 | 3.859e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.556985378505049 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.8702350708354403, dt = 0.0015606595672606554 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (2.2%)
   patch tree reduce : 1.94 us    (0.7%)
   gen split merge   : 1.04 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 273.93 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.37 us    (60.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.366666666666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0332243083973065e-27,-1.4891388684722e-27,3.656502476883796e-16)
    sum a = (-2.8242111639383982e-25,1.8294311210830698e-26,-8.886695739928546e-16)
    sum e = 1.2366632883928742e-09
    sum de = 4.680418887522962e-12
Info: cfl dt = 0.0015606992379617833 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8581e+04 | 11520 |      1 | 4.031e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.939252489443644 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.871795730402701, dt = 0.0015606992379617833 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (1.8%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 324.36 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.366666666666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5748002713894516e-27,-1.6702348320895718e-27,3.642363350770014e-16)
    sum a = (-2.8054883073432796e-25,-3.0413824316591153e-25,-9.227866333756247e-16)
    sum e = 1.2366705862032068e-09
    sum de = 4.670731175255981e-12
Info: cfl dt = 0.0015607408077420374 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9985e+04 | 11520 |      1 | 3.842e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.624005560687621 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.873356429640663, dt = 0.0015607408077420374 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (2.1%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 300.76 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.366666666666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.031776660136985e-27,-2.3649308236709657e-27,3.627694810873045e-16)
    sum a = (-3.557620128725866e-26,9.214904608724353e-26,-9.564570744058681e-16)
    sum e = 1.2366778684440471e-09
    sum de = 4.660226437853148e-12
Info: cfl dt = 0.0015607833244310075 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7501e+04 | 11520 |      1 | 4.189e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.412909924782094 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.8749171704484047, dt = 0.0015607833244310075 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.8%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 305.78 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.366319444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.899329785704847e-27,-1.9258971724937545e-27,3.612503834192561e-16)
    sum a = (9.355436983449049e-25,-2.961928175782496e-25,-9.896754367450585e-16)
    sum e = 1.236685133850144e-09
    sum de = 4.648912948474038e-12
Info: cfl dt = 0.0015608257994727875 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9909e+04 | 11520 |      1 | 3.852e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.58806474914408 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.8764779537728358, dt = 0.0015608257994727875 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.8%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 307.01 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (61.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.36579861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.453326883099722e-28,-2.6965247491553527e-27,3.5967974913130583e-16)
    sum a = (2.6447768538438433e-25,-4.107517361315842e-26,-1.0224364172531066e-15)
    sum e = 1.2366923811645043e-09
    sum de = 4.6367990719663725e-12
Info: cfl dt = 0.0015608672322638434 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9948e+04 | 11520 |      1 | 3.847e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.607377110705755 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.8780387795723086, dt = 0.0015608672322638434 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (1.9%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 303.69 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.365625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9277607901641019e-28,-2.5864412867673847e-27,3.580582945389941e-16)
    sum a = (1.1206531143051805e-25,-4.5118617198570966e-26,-1.0547348688880215e-15)
    sum e = 1.2366996091385261e-09
    sum de = 4.6238932672128146e-12
Info: cfl dt = 0.0015609066352310964 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9792e+04 | 11520 |      1 | 3.867e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.531671947551825 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.8795996468045724, dt = 0.0015609066352310964 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (2.0%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.5%)
   LB compute        : 261.69 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (62.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.364756944444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.843100445925474e-28,-2.623063540987004e-27,3.5638674508620524e-16)
    sum a = (-3.270647277862013e-25,1.938093033248075e-26,-1.0865658078284829e-15)
    sum e = 1.236706816532259e-09
    sum de = 4.6102040953999345e-12
Info: cfl dt = 0.0015609168173781017 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7306e+04 | 11520 |      1 | 4.219e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.319475708882225 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.8811605534398033, dt = 0.0015609168173781017 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (2.1%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 1.10 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.5%)
   LB compute        : 266.82 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.364496527777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.727807239840101e-28,-2.541714462679045e-27,3.5466586368179223e-16)
    sum a = (2.4811806935504927e-25,2.1854982471742434e-25,-1.117923883543263e-15)
    sum e = 1.2367140019938273e-09
    sum de = 4.595740441876042e-12
Info: cfl dt = 0.0015608854851253292 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9983e+04 | 11520 |      1 | 3.842e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.625342660975926 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.8827214702571813, dt = 0.0015608854851253292 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (1.9%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.58 us    (0.5%)
   LB compute        : 310.30 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.363802083333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.420102574702416e-28,-2.033900317482265e-27,3.5289643884460787e-16)
    sum a = (2.296393033348e-25,8.066292028570461e-26,-1.1488037197537996e-15)
    sum e = 1.2367211641303554e-09
    sum de = 4.580511468200002e-12
Info: cfl dt = 0.0015608597977872782 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9889e+04 | 11520 |      1 | 3.854e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.57934312228622 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.8842823557423065, dt = 0.0015608597977872782 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.0%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 296.05 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.363541666666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.977445327775021e-28,-2.0405746691388582e-27,3.510792173587485e-16)
    sum a = (-2.268156191846028e-25,-6.079155512630172e-26,-1.1792010942547948e-15)
    sum e = 1.2367283017815034e-09
    sum de = 4.5645260221644405e-12
Info: cfl dt = 0.0015608404439133659 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9577e+04 | 11520 |      1 | 3.895e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.426570397178962 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.8858432155400937, dt = 0.0015608404439133659 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.7%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 303.59 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.363541666666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0921666347152735e-28,-2.2788143513225826e-27,3.492149495794778e-16)
    sum a = (2.2510143764744967e-25,-1.7374412192768846e-25,-1.2091119578032205e-15)
    sum e = 1.2367354138031108e-09
    sum de = 4.547792990207651e-12
Info: cfl dt = 0.0015608279676373996 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9889e+04 | 11520 |      1 | 3.854e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.578746491586717 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.8874040559840073, dt = 0.0015608279676373996 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.5%)
   patch tree reduce : 1.96 us    (0.5%)
   gen split merge   : 1.20 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 341.04 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.36328125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.918503001457054e-28,-2.598923191164131e-27,3.4730439077687854e-16)
    sum a = (-3.513794775510625e-26,1.675803148328787e-25,-1.2385324444005963e-15)
    sum e = 1.2367424990671164e-09
    sum de = 4.530321305929599e-12
Info: cfl dt = 0.0015608227544928873 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9831e+04 | 11520 |      1 | 3.862e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.550227395781866 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.888964883951645, dt = 0.0015608227544928873 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (2.0%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 302.01 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.36328125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1274104905180216e-28,-2.0646716790159093e-27,3.453483009963162e-16)
    sum a = (-1.4843480708610325e-25,-3.744293943370534e-26,-1.267458861755777e-15)
    sum e = 1.236749556460863e-09
    sum de = 4.512119962560503e-12
Info: cfl dt = 0.0015608250216764094 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7146e+04 | 11520 |      1 | 4.244e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.240751496078726 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.890525706706138, dt = 0.0015608250216764094 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.8%)
   patch tree reduce : 2.27 us    (0.7%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 310.74 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.36310763888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4963808793491966e-29,-2.293116533443854e-27,3.4334744498578287e-16)
    sum a = (-3.4497209996073288e-25,-3.04640293098314e-25,-1.29588769079767e-15)
    sum e = 1.236756584886381e-09
    sum de = 4.493198000924319e-12
Info: cfl dt = 0.0015608348128955086 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9467e+04 | 11520 |      1 | 3.909e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.372606274402415 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.892086531727814, dt = 0.0015608348128955086 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (2.0%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 1.68 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 270.30 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.36310763888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.802637896226561e-28,-2.975590660303434e-27,3.4130259215047474e-16)
    sum a = (-1.3009472889248447e-25,-2.580959650419814e-25,-1.3238155765993921e-15)
    sum e = 1.2367635832596181e-09
    sum de = 4.473564514110096e-12
Info: cfl dt = 0.0015608519979279979 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8618e+04 | 11520 |      1 | 4.025e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.958790961532259 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.89364736654071, dt = 0.0015608519979279979 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (2.1%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 303.64 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.362065972222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.34005322441979e-28,-3.336612409000983e-27,3.392145165546056e-16)
    sum a = (4.1073786734892117e-25,3.258428880335865e-25,-1.3512393293037517e-15)
    sum e = 1.2367705505097271e-09
    sum de = 4.453228651190945e-12
Info: cfl dt = 0.0015608762768916772 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9833e+04 | 11520 |      1 | 3.862e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.55139221607039 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.895208218538638, dt = 0.0015608762768916772 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (1.8%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 327.12 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.361284722222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.449859687433959e-28,-2.356566214127313e-27,3.370839969315258e-16)
    sum a = (-1.4861232750419029e-25,1.789405814317504e-25,-1.3781559154226502e-15)
    sum e = 1.2367774855783684e-09
    sum de = 4.432199612853807e-12
Info: cfl dt = 0.0015609071890795097 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9955e+04 | 11520 |      1 | 3.846e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.611154649481316 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.8967690948155296, dt = 0.0015609071890795097 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (2.0%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 1.10 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 287.59 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.360677083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.4602612744312476e-28,-2.1897074227124795e-27,3.349118167251121e-16)
    sum a = (2.325794852593668e-25,4.497840380584752e-25,-1.4045624578917028e-15)
    sum e = 1.236784387419076e-09
    sum de = 4.41048665622583e-12
Info: cfl dt = 0.0015609441260936074 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9994e+04 | 11520 |      1 | 3.841e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.630525680628029 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.898330002004609, dt = 0.0015609441260936074 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (2.0%)
   patch tree reduce : 1.74 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.5%)
   LB compute        : 269.93 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.360329861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.162082447175649e-28,-1.2698170726397936e-27,3.326987641257546e-16)
    sum a = (-5.0761963551993085e-25,2.6258320967261157e-25,-1.4304562340422016e-15)
    sum e = 1.2367912549967088e-09
    sum de = 4.3880990907974155e-12
Info: cfl dt = 0.001560941723474161 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9506e+04 | 11520 |      1 | 3.904e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.392803396893331 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.8998909461307028, dt = 0.00010905386929715988 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (2.0%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1.04 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.5%)
   LB compute        : 267.97 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.359635416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.9228459462380177e-28,-1.3966730940608892e-27,3.325225579698033e-16)
    sum a = (-1.3161474747235486e-25,1.3682524911886316e-25,-1.432145502987798e-15)
    sum e = 1.2367917159827076e-09
    sum de = 4.386177625274416e-12
Info: cfl dt = 0.0015609369198077122 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0845e+04 | 11520 |      1 | 3.735e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.0511670275607232 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 1545                                                    [SPH][rank=0]
Info: time since start : 715.615402861 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[-9.44765052e-20 -6.09928057e-14  2.50010370e-10 ... -6.85787188e-13
  7.35713555e-09 -2.90579566e-10]
(11520, 3)
[[-9.44765052e-20 -6.09928057e-14  2.50010370e-10 -8.27538597e-13
   3.61360390e-10]
 [ 4.17522811e-06  6.09084034e-07 -3.75569744e-12 -1.99574817e-11
   2.40099877e-08]
 [ 2.69428532e-05  2.95378441e-05  2.07299233e-05 -8.95063447e-09
   1.82467432e-07]
 ...
 [ 3.48589006e-05  4.22962335e-05  4.38923064e-05  9.64187154e-06
  -5.80785080e-09]
 [ 1.24486036e-05  9.82535678e-06 -1.09426288e-09 -2.85464103e-10
   1.91734491e-07]
 [-2.17336012e-10 -1.59124730e-16 -6.85787188e-13  7.35713555e-09
  -2.90579566e-10]]
compute original rho
Info: Dumping state to _to_trash/dusty_settle/dump/0000029.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.42 us   (71.1%)
Info: dump to _to_trash/dusty_settle/dump/0000029.sham                      [Shamrock Dump][rank=0]
              - took 1.22 ms, bandwidth = 2.43 GB/s
Info: evolve_until (target_time = 3.00s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 2.9, dt = 0.0015609369198077122 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.60 us    (1.0%)
   patch tree reduce : 1.19 us    (0.3%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 329.75 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.359635416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.829803562407543e-28,-1.1829638212124362e-27,3.3028697706902176e-16)
    sum a = (-1.0319483803923057e-25,2.8826819516458216e-25,-1.4575882370122142e-15)
    sum e = 1.2367985625049938e-09
    sum de = 4.363414347366614e-12
Info: cfl dt = 0.0015609009204999057 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7580e+04 | 11520 |      1 | 4.177e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.453456655575323 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.9015609369198074, dt = 0.0015609009204999057 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.8%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 304.28 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.359635416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.379640025003502e-28,-6.255254380494263e-28,3.2799196899665853e-16)
    sum a = (1.0720568998538494e-24,5.212165900427862e-26,-1.4824101370844913e-15)
    sum e = 1.2368053555969534e-09
    sum de = 4.3396610968256075e-12
Info: cfl dt = 0.00156085910482338 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9745e+04 | 11520 |      1 | 3.873e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.509243978471734 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.9031218378403074, dt = 0.00156085910482338 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (2.0%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 315.55 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.359461805555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9537647576573228e-27,-7.553719157322422e-28,3.256587633738012e-16)
    sum a = (-4.0935098908261603e-26,1.729922605475678e-25,-1.5067109135030136e-15)
    sum e = 1.2368121106586644e-09
    sum de = 4.315264982770235e-12
Info: cfl dt = 0.001560814685646396 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9950e+04 | 11520 |      1 | 3.846e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.608739534681781 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.9046826969451307, dt = 0.001560814685646396 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (2.0%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 302.93 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.359288194444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0467463714937812e-27,-3.855954979786424e-28,3.2328810180887173e-16)
    sum a = (-1.7317116784392116e-25,3.3958962540920274e-25,-1.5304880641816952e-15)
    sum e = 1.2368188269486087e-09
    sum de = 4.290234504081763e-12
Info: cfl dt = 0.0015607685971898361 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9884e+04 | 11520 |      1 | 3.855e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.576169861602544 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.906243511630777, dt = 0.0015607685971898361 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.8%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.56 us    (0.5%)
   LB compute        : 306.50 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.358767361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.390041612000791e-28,2.866937416127593e-28,3.208808082369284e-16)
    sum a = (-3.591931497034255e-25,4.3731045493132705e-26,-1.5537396753426742e-15)
    sum e = 1.2368255034783842e-09
    sum de = 4.2645794375386255e-12
Info: cfl dt = 0.0015607218047004447 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6925e+04 | 11520 |      1 | 4.279e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.132560640415676 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.907804280227967, dt = 0.0015607218047004447 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (2.0%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 304.76 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.357986111111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.755544805166203e-29,1.0345245067719675e-28,3.184377076544129e-16)
    sum a = (2.815778944079263e-25,-1.2867456554778804e-25,-1.5764640085238476e-15)
    sum e = 1.2368321392801611e-09
    sum de = 4.2383095811675205e-12
Info: cfl dt = 0.0015606752696875465 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9923e+04 | 11520 |      1 | 3.850e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.594313653556826 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.9093650020326676, dt = 0.0015606752696875465 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.0%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 294.04 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.357986111111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.934963230670666e-28,-2.4829454961443657e-28,3.1595962608153267e-16)
    sum a = (-1.213046944406427e-25,-6.027095569708744e-26,-1.5986595094646777e-15)
    sum e = 1.2368387334056204e-09
    sum de = 4.2114347584075545e-12
Info: cfl dt = 0.0015606299253663534 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9941e+04 | 11520 |      1 | 3.848e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.602627174143198 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.9109256773023553, dt = 0.0015606299253663534 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (2.0%)
   patch tree reduce : 2.68 us    (0.9%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 275.74 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.357986111111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.132897233589226e-28,-2.6550050810578434e-28,3.134473902262204e-16)
    sum a = (4.528268489747487e-25,1.6965127080403879e-25,-1.6203247933151353e-15)
    sum e = 1.2368452849257817e-09
    sum de = 4.1839648117349826e-12
Info: cfl dt = 0.00156058665311465 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9992e+04 | 11520 |      1 | 3.841e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.626906995791392 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.912486307227722, dt = 0.00156058665311465 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.2%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.06 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.5%)
   LB compute        : 268.62 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.357725694444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5370078386326374e-27,1.8961226297140166e-28,3.1090182723467334e-16)
    sum a = (-3.439458100436671e-25,7.0595432262769195e-25,-1.641458649134933e-15)
    sum e = 1.2368517929306947e-09
    sum de = 4.1559095997003554e-12
Info: cfl dt = 0.001561450508581854 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9942e+04 | 11520 |      1 | 3.847e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.60237953070374 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.9140468938808364, dt = 0.001561450508581854 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (1.9%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 307.14 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.357118055555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.9248654936434593e-28,1.6724885092723178e-27,3.0832228018543924e-16)
    sum a = (-3.1955894260895805e-25,5.329495801757274e-26,-1.6620719116745356e-15)
    sum e = 1.2368582602871277e-09
    sum de = 4.12726257578095e-12
Info: cfl dt = 0.001561425988217981 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9951e+04 | 11520 |      1 | 3.846e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.614754203937855 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.915608344389418, dt = 0.001561425988217981 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.6%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 331.35 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.356684027777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.870534161281495e-29,1.257768567701268e-27,3.0571098461372983e-16)
    sum a = (7.215095492625701e-26,-3.2933088687334384e-25,-1.6821512638961e-15)
    sum e = 1.236864682337184e-09
    sum de = 4.098048831980116e-12
Info: cfl dt = 0.001561399056330156 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9654e+04 | 11520 |      1 | 3.885e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.469734510040333 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.9171697703776363, dt = 0.001561399056330156 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.00 us    (2.2%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 292.80 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.356684027777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.335442230463788e-28,4.56369629506025e-28,3.030687990064785e-16)
    sum a = (-1.3803460696708122e-25,8.540257676080233e-26,-1.7016959848728993e-15)
    sum e = 1.2368710582196665e-09
    sum de = 4.068278733554175e-12
Info: cfl dt = 0.0015613726730167518 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9680e+04 | 11520 |      1 | 3.881e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.482129811742766 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.9187311694339666, dt = 0.0015613726730167518 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (2.2%)
   patch tree reduce : 2.48 us    (0.8%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 274.87 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.356684027777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.784730018752627e-29,9.29035078641135e-28,3.003965588436618e-16)
    sum a = (1.089822810445218e-25,-5.058777164174517e-26,-1.720705455573661e-15)
    sum e = 1.2368773870778475e-09
    sum de = 4.037962288352153e-12
Info: cfl dt = 0.001561346831800911 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7995e+04 | 11520 |      1 | 4.115e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.659488057338432 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.920292542106983, dt = 0.001561346831800911 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.79 us    (1.9%)
   patch tree reduce : 2.18 us    (0.6%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.67 us    (0.5%)
   LB compute        : 330.33 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.356684027777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.030329011876664e-28,7.238637751196229e-28,2.976951003980236e-16)
    sum a = (-1.6541435770047668e-25,3.3046951392998037e-25,-1.73917920571724e-15)
    sum e = 1.2368836680702724e-09
    sum de = 4.007109524650169e-12
Info: cfl dt = 0.0015613215154041298 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9823e+04 | 11520 |      1 | 3.863e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.55108107564126 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.921853888938784, dt = 0.0015613215154041298 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (1.9%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (0.4%)
   LB compute        : 337.79 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.356684027777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8306793115227442e-28,1.5675191604913497e-27,2.949652605193379e-16)
    sum a = (3.420263705231008e-25,-2.4577285820672734e-25,-1.7571169207817915e-15)
    sum e = 1.236889900371088e-09
    sum de = 3.9757304984992475e-12
Info: cfl dt = 0.001561296698669308 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7817e+04 | 11520 |      1 | 4.141e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.57233886432109 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.923415210454188, dt = 0.001561296698669308 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.47 us    (2.5%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.5%)
   LB compute        : 277.81 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (71.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3565104166666675
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.752649508645561e-28,7.054876380910803e-28,2.9220787640140776e-16)
    sum a = (-3.8209189675838913e-26,-9.101388622627279e-26,-1.7745184343294974e-15)
    sum e = 1.2368960831700506e-09
    sum de = 3.943835281845486e-12
Info: cfl dt = 0.0015612723515473568 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8665e+04 | 11520 |      1 | 4.019e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.985777312186261 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.9249765071528575, dt = 0.0015612723515473568 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (2.1%)
   patch tree reduce : 1.97 us    (0.7%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 274.38 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3565104166666675
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.035815754947868e-28,6.6518148847658805e-28,2.894237853699117e-16)
    sum a = (1.7617375929047172e-25,1.4172509003371913e-26,-1.7913837258911435e-15)
    sum e = 1.2369022156725313e-09
    sum de = 3.911433969908747e-12
Info: cfl dt = 0.001561248442043208 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7004e+04 | 11520 |      1 | 4.266e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.175143237214652 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.9265377795044047, dt = 0.001561248442043208 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (1.9%)
   patch tree reduce : 2.26 us    (0.7%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 304.79 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 17.62 us   (94.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3565104166666675
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.331671184827944e-28,7.652100834338441e-28,2.866138246618845e-16)
    sum a = (1.7918120481095435e-25,5.378591292384474e-26,-1.8077129255187875e-15)
    sum e = 1.2369082970995465e-09
    sum de = 3.878536669282992e-12
Info: cfl dt = 0.0015612249390209354 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9103e+04 | 11520 |      1 | 3.958e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.199201670229844 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.928099027946448, dt = 0.0015612249390209354 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (1.7%)
   patch tree reduce : 2.04 us    (0.5%)
   gen split merge   : 1.19 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.4%)
   LB compute        : 355.15 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3565104166666675
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1518024001663932e-27,8.809277387786766e-28,2.837788311913348e-16)
    sum a = (3.341360733465245e-25,-2.7870428264014217e-25,-1.8235063036899495e-15)
    sum e = 1.2369143266877685e-09
    sum de = 3.845153503363723e-12
Info: cfl dt = 0.001561201814775137 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9143e+04 | 11520 |      1 | 3.953e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.21823890290031 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.9296602528854687, dt = 0.001561201814775137 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.0%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.5%)
   LB compute        : 305.03 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.35625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.779018096102879e-27,2.5388540262547905e-28,2.809196413328034e-16)
    sum a = (9.305017024077528e-26,5.382710320835401e-25,-1.838764277791569e-15)
    sum e = 1.236920303689578e-09
    sum de = 3.811294609169078e-12
Info: cfl dt = 0.0015611790472865364 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9862e+04 | 11520 |      1 | 3.858e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.568807062962302 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.931221454700244, dt = 0.0015611790472865364 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.04 us    (2.0%)
   patch tree reduce : 1.90 us    (0.5%)
   gen split merge   : 1.19 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 335.05 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.35625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7173020132523017e-27,1.6988391963321148e-27,2.7803709068091723e-16)
    sum a = (-3.8059614854817906e-25,-1.8167342505550464e-25,-1.853487406195348e-15)
    sum e = 1.2369262273730997e-09
    sum de = 3.7769701305007384e-12
Info: cfl dt = 0.0015611566220919244 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6823e+04 | 11520 |      1 | 4.295e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.0861061546365 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 2.9327826337475305, dt = 0.0015611566220919244 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.6%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 1.40 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (0.4%)
   LB compute        : 339.12 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.355729166666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.506478616376404e-28,8.433953456967946e-28,2.7513201382311353e-16)
    sum a = (1.9601790696389838e-25,5.006755360405412e-25,-1.86767638709222e-15)
    sum e = 1.2369320970222385e-09
    sum de = 3.742190221420714e-12
Info: cfl dt = 0.001561134533714853 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9622e+04 | 11520 |      1 | 3.889e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.451276929496508 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.9343437903696223, dt = 0.001561134533714853 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.8%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 311.40 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.71 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.355729166666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4804925492807041e-27,2.1624032568445977e-27,2.722052441066551e-16)
    sum a = (-5.608936170037257e-25,-1.504346855461152e-25,-1.8813320569991575e-15)
    sum e = 1.2369379119367314e-09
    sum de = 3.706965040284352e-12
Info: cfl dt = 0.001561112786620093 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9965e+04 | 11520 |      1 | 3.844e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.618565728001325 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.9359049249033373, dt = 0.001561112786620093 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (1.8%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 319.97 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.355034722222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.385126768074707e-29,1.4387995213999069e-27,2.692576134075711e-16)
    sum a = (-4.600389626791018e-25,-2.0123881019740397e-25,-1.8944553903421566e-15)
    sum e = 1.2369436714321901e-09
    sum de = 3.6713047522044596e-12
Info: cfl dt = 0.0015610913956675648 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7937e+04 | 11520 |      1 | 4.124e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.628898901153102 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.9374660376899575, dt = 0.0015610913956675648 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (1.8%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 317.85 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.354774305555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.053723632421802e-28,1.091646555365409e-27,2.662899518965241e-16)
    sum a = (-1.7833503570872495e-25,-6.325829148270864e-26,-1.9070474973736984e-15)
    sum e = 1.2369493748401409e-09
    sum de = 3.6352195212239472e-12
Info: cfl dt = 0.0015610703860660428 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5659e+04 | 11520 |      1 | 4.490e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.517717776784602 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.939027129085625, dt = 0.0015610703860660428 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.8%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.4%)
   LB compute        : 310.61 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.51 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.354253472222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.5044590689709625e-28,1.0430191361530862e-27,2.6330308780846083e-16)
    sum a = (1.2917418844322445e-25,3.699123318236977e-25,-1.919109620179118e-15)
    sum e = 1.2369550215080613e-09
    sum de = 3.5987195138833985e-12
Info: cfl dt = 0.0015610497928398896 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7945e+04 | 11520 |      1 | 4.122e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.632439519020611 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.940588199471691, dt = 0.0015610497928398896 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (1.8%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 341.71 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.353993055555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9208263988325764e-28,1.9795086854756113e-27,2.6029784722212045e-16)
    sum a = (4.956103098924283e-25,-5.20897608041536e-26,-1.93064313212436e-15)
    sum e = 1.2369606107994093e-09
    sum de = 3.5618148908052454e-12
Info: cfl dt = 0.001561029659838621 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9917e+04 | 11520 |      1 | 3.851e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.59451442803784 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.942149249264531, dt = 0.001561029659838621 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.8%)
   patch tree reduce : 1.50 us    (0.5%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 304.97 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.353993055555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.428752663469302e-28,1.5891891334023671e-27,2.5727505383716914e-16)
    sum a = (-1.4824029740925395e-25,1.3527610609540037e-25,-1.941649537051501e-15)
    sum e = 1.236966142093636e-09
    sum de = 3.5245158144479716e-12
Info: cfl dt = 0.0015610100383366768 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9875e+04 | 11520 |      1 | 3.856e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.573853751638305 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.9437102789243696, dt = 0.0015610100383366768 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (1.8%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.4%)
   LB compute        : 312.01 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.353993055555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1892481133566312e-28,1.945096768492916e-27,2.5423552875662084e-16)
    sum a = (-9.157730552195924e-26,-9.783663385736078e-26,-1.952130467179015e-15)
    sum e = 1.236971614786212e-09
    sum de = 3.4868324315458104e-12
Info: cfl dt = 0.0015609909852808508 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9117e+04 | 11520 |      1 | 3.957e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.203496556091359 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.945271288962706, dt = 0.0015609909852808508 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.7%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 331.65 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.353732638888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6350687059797074e-29,1.574193512147943e-27,2.511800902767364e-16)
    sum a = (3.2978820998165795e-25,5.171447154529144e-25,-1.962087678660056e-15)
    sum e = 1.2369770282886007e-09
    sum de = 3.4487748899823396e-12
Info: cfl dt = 0.0015609725612578335 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9911e+04 | 11520 |      1 | 3.851e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.59075115361113 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.946832279947987, dt = 0.0015609725612578335 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.45 us    (2.1%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 329.67 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.353559027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.740800273387952e-28,2.8675441753691014e-27,2.4810955368888284e-16)
    sum a = (1.3238723866668682e-25,6.289479068911007e-25,-1.971523053727021e-15)
    sum e = 1.2369823820282713e-09
    sum de = 3.410353323205517e-12
Info: cfl dt = 0.0015609548282600188 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9810e+04 | 11520 |      1 | 3.864e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.541411153473934 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.948393252509245, dt = 0.0015609548282600188 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (1.9%)
   patch tree reduce : 2.16 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 321.74 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.353298611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.195002905602875e-28,3.943328310563646e-27,2.4502473107839196e-16)
    sum a = (-4.076361141063298e-25,1.0606983668528106e-25,-1.9804385963411828e-15)
    sum e = 1.236987675448663e-09
    sum de = 3.3715778526829256e-12
Info: cfl dt = 0.0015609378473350685 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6940e+04 | 11520 |      1 | 4.276e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.141486911855909 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.949954207337505, dt = 0.0015609378473350685 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.8%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 291.16 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.353298611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1857809176908684e-28,3.698630976452438e-27,2.419264311393148e-16)
    sum a = (9.627043223122242e-25,-1.8245146376290181e-25,-1.98883642719685e-15)
    sum e = 1.2369929080091483e-09
    sum de = 3.332458589368153e-12
Info: cfl dt = 0.0015609216762077793 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6252e+04 | 11520 |      1 | 4.388e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.805383475801813 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.95151514518484, dt = 0.0015609216762077793 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.9%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 294.34 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.55 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.353298611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4350115160651958e-27,3.187739695102294e-27,2.3881545900368577e-16)
    sum a = (-3.6385722131300955e-25,1.647666855501122e-25,-1.9967187854771725e-15)
    sum e = 1.2369980791849954e-09
    sum de = 3.2930056212110526e-12
Info: cfl dt = 0.0015609063669619946 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9895e+04 | 11520 |      1 | 3.853e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.58262158998766 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.9530760668610476, dt = 0.0015609063669619946 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (1.8%)
   patch tree reduce : 1.88 us    (0.5%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.56 us    (0.5%)
   LB compute        : 321.96 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.353038194444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.397547902477437e-28,3.745264758156948e-27,2.3569261606646284e-16)
    sum a = (-3.7131862638573103e-25,2.14143712465373e-25,-2.0040880242912496e-15)
    sum e = 1.2370031884672965e-09
    sum de = 3.2532290229742853e-12
Info: cfl dt = 0.0015608919638665291 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9868e+04 | 11520 |      1 | 3.857e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.569270307395714 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.9546369732280096, dt = 0.0015608919638665291 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (1.9%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 318.89 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.353038194444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.524118444675299e-28,4.088083729609242e-27,2.32558699828563e-16)
    sum a = (3.760035011693097e-26,4.506667860749784e-25,-2.010946611613032e-15)
    sum e = 1.237008235362907e-09
    sum de = 3.2131388513029047e-12
Info: cfl dt = 0.0015608785014248406 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9803e+04 | 11520 |      1 | 3.865e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.537105136018058 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.956197865191876, dt = 0.0015608785014248406 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.7%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.62 us    (0.5%)
   LB compute        : 316.15 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.352430555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.2166818287126525e-28,4.9909414809738676e-27,2.2941450373806517e-16)
    sum a = (-2.682430598774027e-25,-3.5304789210542753e-25,-2.0172971240241503e-15)
    sum e = 1.2370132193943869e-09
    sum de = 3.1727451390096093e-12
Info: cfl dt = 0.0015608660027179933 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9819e+04 | 11520 |      1 | 3.863e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.544843188956207 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.957758743693301, dt = 0.0015608660027179933 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (1.8%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 317.51 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.352430555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.3576930527186857e-29,3.797359373035033e-27,2.2626081705060936e-16)
    sum a = (-4.409780545065709e-25,-8.201443315621894e-26,-2.023142250661215e-15)
    sum e = 1.2370181400999041e-09
    sum de = 3.1320578975327047e-12
Info: cfl dt = 0.001560854478099825 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7749e+04 | 11520 |      1 | 4.151e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.535283916618374 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.959319609696019, dt = 0.001560854478099825 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.81 us    (2.4%)
   patch tree reduce : 2.24 us    (0.8%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.5%)
   LB compute        : 261.46 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.55 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.352170138888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.598645251091678e-28,3.902675441382577e-27,2.230984246790124e-16)
    sum a = (7.855001124698878e-25,3.167463534848913e-25,-2.028484781369633e-15)
    sum e = 1.2370229970331605e-09
    sum de = 3.0910871102228153e-12
Info: cfl dt = 0.0015608439242905548 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8081e+04 | 11520 |      1 | 4.102e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.69704285547832 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.9608804641741187, dt = 0.0015608439242905548 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.44 us    (2.1%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 291.53 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.352170138888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.304012289893379e-27,4.705417917898304e-27,2.1992810707619824e-16)
    sum a = (-2.5494983169486823e-25,-6.503113797052646e-25,-2.0333276157588833e-15)
    sum e = 1.237027789763296e-09
    sum de = 3.0498427432068917e-12
Info: cfl dt = 0.0015608343239014151 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9787e+04 | 11520 |      1 | 3.868e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.528821336167038 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.962441308098409, dt = 0.0015608343239014151 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (2.1%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1.04 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 265.85 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.351996527777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1719121350278174e-28,2.9461628370902723e-27,2.167506400875929e-16)
    sum a = (2.994471274301345e-25,-3.8356337459893887e-25,-2.037673752781021e-15)
    sum e = 1.2370325178748281e-09
    sum de = 3.0083347341217115e-12
Info: cfl dt = 0.0015608256454059332 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9760e+04 | 11520 |      1 | 3.871e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.515873330031 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 2.9640021424223106, dt = 0.0015608256454059332 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.9%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 290.81 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.351388888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0103408170032721e-27,2.558877081224571e-27,2.1356679483710905e-16)
    sum a = (-8.095901879556075e-26,-1.0063258044223189e-25,-2.0415262946554135e-15)
    sum e = 1.2370371809675566e-09
    sum de = 2.9665729906516483e-12
Info: cfl dt = 0.0015608178435596999 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9796e+04 | 11520 |      1 | 3.866e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.533164105312617 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.9655629680677165, dt = 0.0015608178435596999 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (2.0%)
   patch tree reduce : 1.77 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 283.88 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.351215277777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.994781306103835e-28,2.591728760157673e-27,2.1037733759533154e-16)
    sum a = (-2.44889416751091e-25,-1.9463172213672642e-25,-2.0448884378259142e-15)
    sum e = 1.2370417786564769e-09
    sum de = 2.924567394735684e-12
Info: cfl dt = 0.0015608108602539943 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9942e+04 | 11520 |      1 | 3.847e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.604449357398163 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.967123785911276, dt = 0.0015608108602539943 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.7%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 328.67 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.350954861111112
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.478169151905181e-29,2.2289734136272426e-27,2.0718302966697228e-16)
    sum a = (-6.058272593135283e-25,-2.4087232385273825e-25,-2.0477634760545577e-15)
    sum e = 1.2370463105717153e-09
    sum de = 2.8823277937910234e-12
Info: cfl dt = 0.0015608046257735895 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9647e+04 | 11520 |      1 | 3.886e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.460396864973708 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.96868459677153, dt = 0.0015608046257735895 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.90 us    (1.9%)
   patch tree reduce : 2.21 us    (0.6%)
   gen split merge   : 1.26 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 340.36 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.350954861111112
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1292656283389352e-27,1.8183707669092862e-27,2.0398462726567113e-16)
    sum a = (2.5795935753275032e-26,4.516840612833132e-25,-2.0501547972432545e-15)
    sum e = 1.2370507763584428e-09
    sum de = 2.8398640112656384e-12
Info: cfl dt = 0.0015607990604166097 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9452e+04 | 11520 |      1 | 3.911e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.365458113272096 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.9702454013973036, dt = 0.0015607990604166097 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.98 us    (2.0%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 321.71 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.350694444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.143870719731634e-28,3.0741023571569186e-27,2.0078288139180648e-16)
    sum a = (-2.0323730177914963e-25,2.2449814560160694e-25,-2.0520658796850703e-15)
    sum e = 1.2370551756768302e-09
    sum de = 2.7971858386587057e-12
Info: cfl dt = 0.001560794076421234 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9470e+04 | 11520 |      1 | 3.909e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.374197199190498 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.97180620045772, dt = 0.001560794076421234 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (1.7%)
   patch tree reduce : 2.38 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 345.87 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.350260416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1022215021459856e-27,3.261070883433177e-27,1.9757853771456333e-16)
    sum a = (1.6334236157061685e-25,-2.251083720387812e-25,-2.0535002946343017e-15)
    sum e = 1.2370595082019785e-09
    sum de = 2.7543030349439956e-12
Info: cfl dt = 0.0015607895801316896 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6731e+04 | 11520 |      1 | 4.310e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.037864265496303 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.973366994534141, dt = 0.0015607895801316896 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (1.9%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 312.08 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.39 us    (63.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.349479166666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.755544805166203e-28,2.535733550155604e-27,1.9437233643869042e-16)
    sum a = (-2.674220279437501e-25,1.1280035691165977e-25,-2.054461699281858e-15)
    sum e = 1.2370637736238732e-09
    sum de = 2.711225325654837e-12
Info: cfl dt = 0.0015607854743358146 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8657e+04 | 11520 |      1 | 4.020e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.977192061890765 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.9749277841142727, dt = 0.0015607854743358146 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.9%)
   patch tree reduce : 2.37 us    (0.7%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 302.77 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.349305555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.320308109522464e-27,2.964192254552239e-27,1.9116501218571404e-16)
    sum a = (1.9395492554276952e-26,-1.8489722358553087e-25,-2.0549538401779892e-15)
    sum e = 1.2370679716473312e-09
    sum de = 2.6679624035882045e-12
Info: cfl dt = 0.0015607816606918877 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8699e+04 | 11520 |      1 | 4.014e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.997652795452433 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.9764885695886085, dt = 0.0015607816606918877 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (2.1%)
   patch tree reduce : 1.76 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 298.26 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.349045138888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0522938845590017e-27,2.3973924430916696e-27,1.8795729385527252e-16)
    sum a = (-2.8427259887935716e-25,-1.4140194739767004e-25,-2.054980546224845e-15)
    sum e = 1.2370721019919655e-09
    sum de = 2.6245239234569956e-12
Info: cfl dt = 0.0015607780421663688 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9743e+04 | 11520 |      1 | 3.873e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.507197184153512 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.9780493512493003, dt = 0.0015607780421663688 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (1.7%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 334.15 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.348871527777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7575214829751496e-27,2.224466059261751e-27,1.847499045004496e-16)
    sum a = (2.4184383207828496e-26,-2.384612359867668e-25,-2.054545730923572e-15)
    sum e = 1.2370761643921432e-09
    sum de = 2.5809195023870857e-12
Info: cfl dt = 0.001560774525403294 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8811e+04 | 11520 |      1 | 3.998e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.052292927261503 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.9796101292914665, dt = 0.001560774525403294 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (1.9%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.54 us    (0.4%)
   LB compute        : 322.01 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.348524305555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4822261471135855e-27,1.791413320607981e-27,1.8154356118741684e-16)
    sum a = (-2.9241357430256814e-25,-1.063472123385421e-25,-2.053653385113153e-15)
    sum e = 1.2370801585969506e-09
    sum de = 2.537158719645124e-12
Info: cfl dt = 0.0015607710229469203 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8905e+04 | 11520 |      1 | 3.985e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.09832026512369 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.98117090381687, dt = 0.0015607710229469203 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (1.9%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 323.53 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.347829861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1711579259006484e-27,1.7658427525729804e-27,1.783389748680961e-16)
    sum a = (-1.0658159476554765e-25,3.736666112905856e-25,-2.0523075799077684e-15)
    sum e = 1.237084084370166e-09
    sum de = 2.4932511095384312e-12
Info: cfl dt = 0.0015607674552476525 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9825e+04 | 11520 |      1 | 3.863e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.546655818940483 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.9827316748398167, dt = 0.0015607674552476525 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.1%)
   patch tree reduce : 2.24 us    (0.7%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (0.5%)
   LB compute        : 283.34 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.55 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.347569444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1940414172946828e-27,2.7136006878092346e-27,1.751368502360433e-16)
    sum a = (-4.995244270795079e-25,-2.350522892081888e-25,-2.0505124645989287e-15)
    sum e = 1.2370879414902164e-09
    sum de = 2.4492061708642145e-12
Info: cfl dt = 0.0015607637523875092 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9740e+04 | 11520 |      1 | 3.874e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.505235589778197 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.9842924422950645, dt = 0.0015607637523875092 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.7%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 303.95 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (63.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.347569444444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.293835882474634e-27,1.8910085161070164e-27,1.7193788558626575e-16)
    sum a = (6.159043167965012e-25,-1.5056505210314788e-25,-2.0482722604662472e-15)
    sum e = 1.2370917297501676e-09
    sum de = 2.4050333549867353e-12
Info: cfl dt = 0.0015607598554821763 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9805e+04 | 11520 |      1 | 3.865e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.537280798342419 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.985853206047452, dt = 0.0015607598554821763 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (2.1%)
   patch tree reduce : 1.99 us    (0.7%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.5%)
   LB compute        : 271.09 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.347135416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4274444555945337e-27,1.7098475425709115e-27,1.687427726837459e-16)
    sum a = (-8.411999174012336e-25,-8.119201434430001e-26,-2.04559126655626e-15)
    sum e = 1.23709544895768e-09
    sum de = 2.3607420661424437e-12
Info: cfl dt = 0.0015607557176897148 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9066e+04 | 11520 |      1 | 3.963e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.176772970318652 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.987413965902934, dt = 0.0015607557176897148 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (2.2%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 631.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 279.25 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.346788194444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.903022160949154e-27,1.6470913010206054e-27,1.6555219661229388e-16)
    sum a = (-5.160102490310767e-25,-9.863478229961938e-27,-2.042473850769772e-15)
    sum e = 1.2370990989349708e-09
    sum de = 2.316341662830084e-12
Info: cfl dt = 0.0015607513048241201 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9764e+04 | 11520 |      1 | 3.870e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.51699532416074 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.988974721620624, dt = 0.0015607513048241201 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.9%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.52 us    (0.5%)
   LB compute        : 303.11 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.346788194444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.477883202332622e-27,1.6632137608664022e-27,1.6236683564674948e-16)
    sum a = (-1.1717942503751814e-25,2.128358862602473e-25,-2.0389244509183686e-15)
    sum e = 1.237102679518782e-09
    sum de = 2.271841452295485e-12
Info: cfl dt = 0.0015607465955543049 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9760e+04 | 11520 |      1 | 3.871e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.515164617830084 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.990535472925448, dt = 0.0015607465955543049 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (2.1%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 276.93 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (59.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.346527777777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.327060190871941e-27,2.1806927139814963e-27,1.5918736111672127e-16)
    sum a = (5.761092318231424e-27,-2.831520012401826e-25,-2.0349475725983853e-15)
    sum e = 1.2371061905603316e-09
    sum de = 2.22725068855786e-12
Info: cfl dt = 0.0015607415811843871 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9810e+04 | 11520 |      1 | 3.864e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.539533955503753 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.9920962195210024, dt = 0.0015607415811843871 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.90 us    (2.1%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.4%)
   LB compute        : 310.16 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.64 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.34609375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.2206172839330236e-27,1.3008918137941925e-27,1.5601443727430624e-16)
    sum a = (1.1956000158163085e-25,2.793380860078436e-25,-2.0305477862820834e-15)
    sum e = 1.2371096319252582e-09
    sum de = 2.1825785728286482e-12
Info: cfl dt = 0.001560736265031414 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9879e+04 | 11520 |      1 | 3.856e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.573097503109429 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.993656961102187, dt = 0.001560736265031414 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (1.8%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 313.75 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 5.79 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.345746527777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.9314531654084084e-27,2.2458759924978363e-27,1.528487211709987e-16)
    sum a = (-2.3499612063840347e-25,-1.5266478579833381e-25,-2.0257297239478212e-15)
    sum e = 1.2371130034935706e-09
    sum de = 2.1378342512081365e-12
Info: cfl dt = 0.001560730661427029 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9718e+04 | 11520 |      1 | 3.876e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.494138491449549 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.9952176973672184, dt = 0.001560730661427029 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (1.8%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.64 us    (0.5%)
   LB compute        : 341.09 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.53 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.345486111111112
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.570457326608488e-27,1.6301020422583677e-27,1.4969086254130085e-16)
    sum a = (-2.1847562673017704e-25,-3.9975933899284993e-25,-2.0204980805905112e-15)
    sum e = 1.2371163051595786e-09
    sum de = 2.0930268122315316e-12
Info: cfl dt = 0.0015607247943836976 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9740e+04 | 11520 |      1 | 3.874e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.50503967925604 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.9967784280286454, dt = 0.0015607247943836976 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (2.1%)
   patch tree reduce : 1.93 us    (0.7%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.5%)
   LB compute        : 264.28 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3453125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.920644088850528e-27,8.432219859135064e-28,1.4654150368309048e-16)
    sum a = (-8.71070501500913e-26,-1.2501598068127515e-25,-2.014857612284515e-15)
    sum e = 1.2371195368318207e-09
    sum de = 2.0481652866607326e-12
Info: cfl dt = 0.0015607186959756916 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9734e+04 | 11520 |      1 | 3.874e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.502169083994946 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.998339152823029, dt = 0.0015607186959756916 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.9%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.65 us    (0.5%)
   LB compute        : 304.33 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3453125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.950808691142664e-27,8.5778420770971e-28,1.4340127934729766e-16)
    sum a = (-4.17244060015725e-25,-2.6766750539688608e-27,-2.0088131303905775e-15)
    sum e = 1.2371226984329847e-09
    sum de = 2.0032586458565676e-12
Info: cfl dt = 0.0015607124044965356 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9795e+04 | 11520 |      1 | 3.866e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.53158995460126 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.9998998715190046, dt = 0.00010012848099538729 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.8%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 314.22 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.344704861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.254881751030059e-27,9.130859785786263e-28,1.4320485680792062e-16)
    sum a = (-3.384898309440228e-25,-1.8992465730088688e-25,-2.008435253106142e-15)
    sum e = 1.2371228638866383e-09
    sum de = 2.0003567202210205e-12
Info: cfl dt = 0.001560711953483046 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8708e+04 | 11520 |      1 | 4.013e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8982683535341266 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 1610                                                    [SPH][rank=0]
Info: time since start : 744.3924568440001 (s)                                        [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[-1.17292576e-20 -2.65727453e-14  2.45460695e-10 ... -2.28510182e-13
  9.11629809e-09 -2.44124644e-10]
(11520, 3)
[[-1.17292576e-20 -2.65727453e-14  2.45460695e-10 -7.25428678e-13
  -2.82831140e-11]
 [ 3.88232426e-06 -5.81115096e-10 -6.39397693e-13 -9.86077573e-12
  -5.10083797e-10]
 [ 2.66755701e-05  2.85874551e-05  1.76997025e-05 -3.13328378e-09
   2.26492203e-07]
 ...
 [ 3.48296627e-05  4.19915161e-05  4.17461543e-05  2.80246341e-06
   2.49196034e-08]
 [ 1.21612031e-05  8.83999364e-06 -1.27713938e-10 -1.21346104e-10
   1.06911441e-07]
 [-2.19127953e-13 -1.00843941e-17 -2.28510182e-13  9.11629809e-09
  -2.44124644e-10]]
compute original rho
Info: Dumping state to _to_trash/dusty_settle/dump/0000030.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.88 us   (68.2%)
Info: dump to _to_trash/dusty_settle/dump/0000030.sham                      [Shamrock Dump][rank=0]
              - took 1.22 ms, bandwidth = 2.43 GB/s
Info: evolve_until (target_time = 3.10s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 3, dt = 0.001560711953483046 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.48 us    (1.2%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 731.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.4%)
   LB compute        : 270.58 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.344704861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.7753078204610515e-27,6.152538708896041e-28,1.4007028681868647e-16)
    sum a = (2.5338855348657525e-25,-4.43914769235472e-25,-2.0019424091962627e-15)
    sum e = 1.2371259858079121e-09
    sum de = 1.95543137817734e-12
Info: cfl dt = 0.001560705545199674 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8160e+04 | 11520 |      1 | 4.091e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.734104483316209 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.001560711953483, dt = 0.001560705545199674 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.9%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 297.11 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.34453125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.922377686683409e-27,-2.6732078583030983e-28,1.3695091092904673e-16)
    sum a = (-1.5628835198862248e-25,1.0102853418726199e-25,-1.9950795317961193e-15)
    sum e = 1.2371290026021976e-09
    sum de = 1.9104597199937533e-12
Info: cfl dt = 0.0015606989918145494 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9937e+04 | 11520 |      1 | 3.848e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.600694701540888 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.0031214174986824, dt = 0.0015606989918145494 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 24.44 us   (7.8%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 272.56 us  (87.5%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.343836805555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.492037934568233e-27,3.134344881849547e-28,1.3384254778049658e-16)
    sum a = (-1.8274894915102424e-25,6.768603903571434e-25,-1.987827636605789e-15)
    sum e = 1.2371319491604907e-09
    sum de = 1.865470036627754e-12
Info: cfl dt = 0.001560692380201227 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7937e+04 | 11520 |      1 | 4.124e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.625371190630084 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.004682116490497, dt = 0.001560692380201227 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.9%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 276.28 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.343489583333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.778775016126814e-27,1.844374734402507e-27,1.3074581934789653e-16)
    sum a = (2.8111060311207315e-25,-7.164613123732195e-26,-1.980191847384228e-15)
    sum e = 1.2371348254771547e-09
    sum de = 1.8204710489798e-12
Info: cfl dt = 0.0015606857525793235 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7114e+04 | 11520 |      1 | 4.249e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.223937654379949 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.0062428088706983, dt = 0.0015606857525793235 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.9%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 305.58 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (62.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.343315972222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.992761758698394e-27,1.1296123479055115e-27,1.2766132070318447e-16)
    sum a = (1.0344026348443158e-24,-3.5924307732101246e-25,-1.972177240534159e-15)
    sum e = 1.237137631545038e-09
    sum de = 1.775471400952748e-12
Info: cfl dt = 0.0015606791473430268 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9618e+04 | 11520 |      1 | 3.890e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.444959846581627 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.0078034946232775, dt = 0.0015606791473430268 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.77 us    (2.0%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 322.83 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.343315972222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.7983736218371344e-27,3.52613799208074e-28,1.2458963895033876e-16)
    sum a = (-7.037054995188782e-25,4.0413632680130885e-27,-1.9637889404353287e-15)
    sum e = 1.2371403673704947e-09
    sum de = 1.7304796744319326e-12
Info: cfl dt = 0.001560672597135422 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9503e+04 | 11520 |      1 | 3.905e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.389087190962822 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.0093641737706203, dt = 0.001560672597135422 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (1.9%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 1.55 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.5%)
   LB compute        : 303.64 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.343142361111112
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.2202097943724316e-27,6.282558546362145e-28,1.2153135308695102e-16)
    sum a = (1.194337956593971e-25,1.079795680579832e-25,-1.95503211536158e-15)
    sum e = 1.237143032973273e-09
    sum de = 1.6855043792270827e-12
Info: cfl dt = 0.001560666127404807 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9924e+04 | 11520 |      1 | 3.850e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.594065647193904 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.0109248463677556, dt = 0.001560666127404807 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.7%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.74 us    (0.5%)
   LB compute        : 322.45 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.342881944444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.3825353215241455e-27,8.681857947069984e-28,1.184870339550864e-16)
    sum a = (-9.833486987453089e-26,1.4551126770073208e-25,-1.945911977666941e-15)
    sum e = 1.2371456283863836e-09
    sum de = 1.6405539555671206e-12
Info: cfl dt = 0.0015606597552653403 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9024e+04 | 11520 |      1 | 3.969e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.155234595436811 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.0124855124951604, dt = 0.0015606597552653403 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.7%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 314.72 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.64 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (63.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.342447916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.7164262641371005e-27,1.1504155219000882e-27,1.1545724418907023e-16)
    sum a = (-1.9495243773580948e-25,2.0447578407096008e-25,-1.9364337808481484e-15)
    sum e = 1.2371481536559719e-09
    sum de = 1.5956367785793341e-12
Info: cfl dt = 0.0015606534887002972 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8561e+04 | 11520 |      1 | 4.033e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.929300071947356 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.014046172250426, dt = 0.0015606534887002972 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (2.0%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1.42 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 271.13 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.342447916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.1012849830367684e-27,1.5080567548235183e-27,1.1244253817353646e-16)
    sum a = (1.7758282760903773e-26,2.58680534231229e-26,-1.9266028195510392e-15)
    sum e = 1.237150608841201e-09
    sum de = 1.5507611455819643e-12
Info: cfl dt = 0.0015606473261333817 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5681e+04 | 11520 |      1 | 4.486e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.524774020755146 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.0156068257391264, dt = 0.0015606473261333817 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.9%)
   patch tree reduce : 2.28 us    (0.7%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 290.77 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.342447916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.902614671388561e-27,1.4118420750986013e-27,1.0944346199683819e-16)
    sum a = (-7.250835345548384e-25,2.6225313264523093e-25,-1.9164244260619465e-15)
    sum e = 1.2371529940141068e-09
    sum de = 1.5059352862494387e-12
Info: cfl dt = 0.0015606412563795317 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9386e+04 | 11520 |      1 | 3.920e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.3317723463423 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 3.01716747306526, dt = 0.0015606412563795317 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.6%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1.27 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.55 us    (0.4%)
   LB compute        : 350.47 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (63.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.342447916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.6164494889751e-27,2.0238021101057308e-27,1.0646055341415261e-16)
    sum a = (-2.1719900528604317e-26,2.537099625247915e-25,-1.9059039706153897e-15)
    sum e = 1.2371553092594834e-09
    sum de = 1.4611673568367594e-12
Info: cfl dt = 0.0015606352590198328 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9521e+04 | 11520 |      1 | 3.902e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.397492990759455 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.0187281143216396, dt = 0.0015606352590198328 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.72 us    (2.3%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 270.02 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.342274305555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.102264371742481e-27,2.3918449300264492e-27,1.0349434180570536e-16)
    sum a = (-5.044450711683585e-25,3.270369902208752e-25,-1.8950468581294267e-15)
    sum e = 1.2371575546747543e-09
    sum de = 1.4164654403377611e-12
Info: cfl dt = 0.001560629304998487 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9616e+04 | 11520 |      1 | 3.890e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.44367844248817 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.020288749580659, dt = 0.001560629304998487 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (2.0%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 306.56 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.341840277777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.270709311104536e-27,2.9587314213786626e-27,1.0054534814072152e-16)
    sum a = (1.7630967336056963e-25,4.023611226204383e-26,-1.883858528340883e-15)
    sum e = 1.2371597303698475e-09
    sum de = 1.3718375450864726e-12
Info: cfl dt = 0.0015606233576722097 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6759e+04 | 11520 |      1 | 4.305e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.050471826813569 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.0218493788856575, dt = 0.0015606233576722097 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.7%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.4%)
   LB compute        : 328.54 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (63.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.341579861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.480882138443776e-27,2.811895684933609e-27,9.761408493651535e-17)
    sum a = (-8.319085264561225e-26,3.109048222272142e-25,-1.8723444548521524e-15)
    sum e = 1.2371618364670748e-09
    sum de = 1.3272916016753184e-12
Info: cfl dt = 0.0015606173742195354 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9884e+04 | 11520 |      1 | 3.855e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.574035072621779 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.0234100022433297, dt = 0.0015606173742195354 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (2.0%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 283.60 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.341579861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.79709038316134e-27,3.531338785579384e-27,9.47010562157593e-17)
    sum a = (-5.510691447250037e-25,-1.5744674206055383e-25,-1.8605101414722384e-15)
    sum e = 1.237163873101005e-09
    sum de = 1.2828354679941714e-12
Info: cfl dt = 0.001560611307189136 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9874e+04 | 11520 |      1 | 3.856e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.56918972854185 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.0249706196175494, dt = 0.001560611307189136 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.6%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 330.64 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.341319444444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.023437490141633e-27,2.8959751798283562e-27,9.1806757469335e-17)
    sum a = (5.529518319715128e-25,-3.136730312467592e-25,-1.8483611215266412e-15)
    sum e = 1.2371658404183553e-09
    sum de = 1.238476922470953e-12
Info: cfl dt = 0.001560605106259104 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9900e+04 | 11520 |      1 | 3.853e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.581768653494962 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.0265312309247387, dt = 0.001560605106259104 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    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   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 317.55 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.341145833333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.3092559529885185e-27,2.2708398012913283e-27,8.893167561389347e-17)
    sum a = (-2.019544393828174e-25,2.2531501690046064e-25,-1.835902957562852e-15)
    sum e = 1.2371677385778685e-09
    sum de = 1.1942236667341197e-12
Info: cfl dt = 0.0015605987201530052 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8238e+04 | 11520 |      1 | 4.080e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.771500345024876 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.0280918360309976, dt = 0.0015605987201530052 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (1.8%)
   patch tree reduce : 1.91 us    (0.5%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 329.01 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (76.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.340885416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.227716084849077e-27,3.0396904401742232e-27,8.607628894516578e-17)
    sum a = (1.481168652435528e-25,-2.7213880092745375e-25,-1.8231412392355966e-15)
    sum e = 1.2371695677502025e-09
    sum de = 1.1500833239006533e-12
Info: cfl dt = 0.0015605920986003752 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9851e+04 | 11520 |      1 | 3.859e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.55798673139391 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.0296524347511506, dt = 0.0015605920986003752 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.6%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.3%)
   LB compute        : 355.74 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.340711805555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.695154830587915e-27,2.2195253054380392e-27,8.324106709321411e-17)
    sum a = (-3.024070723699962e-25,1.5788776934923887e-25,-1.8100815805719125e-15)
    sum e = 1.2371713281178135e-09
    sum de = 1.1060634361550453e-12
Info: cfl dt = 0.0015605851942966599 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7223e+04 | 11520 |      1 | 4.232e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.276385875801106 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.031213026849751, dt = 0.0015605851942966599 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.8%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 305.33 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.340277777777779
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.531789144736472e-27,2.8125891240667617e-27,8.042647097826523e-17)
    sum a = (-5.910892506970705e-26,-8.010608866178311e-26,-1.796729622846178e-15)
    sum e = 1.2371730198748434e-09
    sum de = 1.0621714674068858e-12
Info: cfl dt = 0.0015605779647822494 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7768e+04 | 11520 |      1 | 4.149e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.542015230167898 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.0327736120440476, dt = 0.0015605779647822494 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.6%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 326.01 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.340017361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.464178829254099e-27,2.4986345565319424e-27,7.763295275382757e-17)
    sum a = (-7.64873765454265e-26,-4.935067622820101e-25,-1.78309102608896e-15)
    sum e = 1.2371746432270112e-09
    sum de = 1.0184147998054939e-12
Info: cfl dt = 0.0015605703741729663 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9929e+04 | 11520 |      1 | 3.849e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.595675694417354 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.03433419000883, dt = 0.0015605703741729663 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (2.0%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 301.67 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.340017361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.57304877315905e-27,1.432991968659754e-27,7.486095577080592e-17)
    sum a = (2.2869986666916157e-25,-3.3514190680916225e-25,-1.7691714742398943e-15)
    sum e = 1.237176198391495e-09
    sum de = 9.74800733662074e-13
Info: cfl dt = 0.0015605623946865915 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8335e+04 | 11520 |      1 | 4.066e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.818297107731645 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.0358947603830027, dt = 0.0015605623946865915 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (2.0%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 300.09 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.339756944444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.970103446882903e-27,1.0273300757655097e-27,7.211091451851459e-17)
    sum a = (2.5033152706807223e-26,3.1333185919324813e-25,-1.754976672538849e-15)
    sum e = 1.2371776855968207e-09
    sum de = 9.313364839415814e-13
Info: cfl dt = 0.0015605540079069284 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9551e+04 | 11520 |      1 | 3.898e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.411221397071419 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.037455322777689, dt = 0.0015605540079069284 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.3%)
   patch tree reduce : 1.77 us    (0.6%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 264.94 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (60.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.339756944444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.120579738777008e-27,1.979422005583967e-27,6.938325457527684e-17)
    sum a = (-2.6779717851478563e-25,2.8902265694145217e-25,-1.7405123423070008e-15)
    sum e = 1.2371791050827372e-09
    sum de = 8.880291841413451e-13
Info: cfl dt = 0.0015605452057402523 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0083e+04 | 11520 |      1 | 3.829e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.670558605379023 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.039015876785596, dt = 0.0015605452057402523 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.8%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 1.49 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 318.95 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.339496527777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.757850302144205e-27,2.462055642258145e-27,6.667839256814582e-17)
    sum a = (1.525933615676191e-25,1.0520581152537297e-25,-1.725784222252053e-15)
    sum e = 1.2371804571001025e-09
    sum de = 8.448858788360865e-13
Info: cfl dt = 0.0015605359910340526 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9887e+04 | 11520 |      1 | 3.855e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.57492467995786 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.0405764219913363, dt = 0.0015605359910340526 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (1.8%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 299.55 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 4.83 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.339322916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.20413915432189e-27,2.418022257302958e-27,6.399673612519173e-17)
    sum a = (2.5410799658722104e-25,-7.253373332775721e-26,-1.7107980672468073e-15)
    sum e = 1.2371817419107518e-09
    sum de = 8.019135294668756e-13
Info: cfl dt = 0.00156052637783416 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8998e+04 | 11520 |      1 | 3.973e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.141433811260521 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.0421369579823705, dt = 0.00156052637783416 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (2.3%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1.10 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.5%)
   LB compute        : 266.77 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.339149305555557
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.709717052384118e-27,2.2127642738898017e-27,6.133868383118278e-17)
    sum a = (-3.623247208287424e-25,6.877251946953776e-26,-1.6955596468166892e-15)
    sum e = 1.2371829597873807e-09
    sum de = 7.591190103975015e-13
Info: cfl dt = 0.0015605163912719678 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5234e+04 | 11520 |      1 | 4.565e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.305709918492086 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.0436974843602047, dt = 0.0015605163912719678 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.91 us    (2.4%)
   patch tree reduce : 1.75 us    (0.6%)
   gen split merge   : 1.08 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.5%)
   LB compute        : 267.16 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.339149305555557
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.757156863011052e-27,2.4637892400910267e-27,5.870462518855011e-17)
    sum a = (-2.5278630159943228e-26,1.1042602131974542e-25,-1.6800747425694306e-15)
    sum e = 1.2371841110134058e-09
    sum de = 7.165091052669252e-13
Info: cfl dt = 0.0015605060670833336 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9882e+04 | 11520 |      1 | 3.855e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.572509991775206 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.0452580007514767, dt = 0.0015605060670833336 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (2.2%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1.09 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.5%)
   LB compute        : 266.57 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.339149305555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.540457133900879e-27,2.6187728863506228e-27,5.609494058301956e-17)
    sum a = (-1.8424677767863377e-27,-1.6728525648172228e-26,-1.66434914770995e-15)
    sum e = 1.2371851958828312e-09
    sum de = 6.740905122701559e-13
Info: cfl dt = 0.0015604954507847356 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0127e+04 | 11520 |      1 | 3.824e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.69147858406142 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.04681850681856, dt = 0.0015604954507847356 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (1.9%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 307.04 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.339149305555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.508905653342437e-27,2.485285853218756e-27,5.351000125262323e-17)
    sum a = (7.47014240579921e-26,3.481258611383107e-25,-1.648388665084877e-15)
    sum e = 1.2371862147001116e-09
    sum de = 6.318698393911862e-13
Info: cfl dt = 0.0015604845965288459 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9913e+04 | 11520 |      1 | 3.851e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.58725315381276 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.048379002269345, dt = 0.0015604845965288459 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.8%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 306.72 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.338888888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.3355458700543e-27,3.3326684739311776e-27,5.0950169261962544e-17)
    sum a = (2.824654964983616e-26,-3.7529480637522777e-25,-1.6321991078688238e-15)
    sum e = 1.2371871677800085e-09
    sum de = 5.898536051048526e-13
Info: cfl dt = 0.0015604735656865928 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9969e+04 | 11520 |      1 | 3.844e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.614632285515002 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.0499394868658736, dt = 0.0015604735656865928 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.8%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 312.86 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.338628472222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.3560023244823e-27,2.1507014714726483e-27,4.841579747751344e-17)
    sum a = (-6.71276818456999e-26,3.762878112139022e-26,-1.6157862952410081e-15)
    sum e = 1.2371880554474456e-09
    sum de = 5.480482345429755e-13
Info: cfl dt = 0.0015604624252010641 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9941e+04 | 11520 |      1 | 3.848e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.600472910388568 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.0514999604315602, dt = 0.0015604624252010641 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (1.8%)
   patch tree reduce : 2.32 us    (0.7%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 317.56 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.338454861111112
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.497117188078844e-27,2.5650313535312995e-27,4.59072295567498e-17)
    sum a = (2.364280724483635e-25,-1.669357631586134e-25,-1.5991560535953884e-15)
    sum e = 1.2371888780373512e-09
    sum de = 5.064600652327993e-13
Info: cfl dt = 0.0015604512457831367 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9934e+04 | 11520 |      1 | 3.848e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.597368974931923 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.0530604228567615, dt = 0.0015604512457831367 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.9%)
   patch tree reduce : 1.58 us    (0.5%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 288.82 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.33828125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.923643024961682e-27,2.148274434506614e-27,4.342479993426846e-17)
    sum a = (5.203123454131553e-25,1.1083237665177282e-25,-1.5823142126483734e-15)
    sum e = 1.2371896358945144e-09
    sum de = 4.650953381724943e-13
Info: cfl dt = 0.0015604401000096889 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7708e+04 | 11520 |      1 | 4.158e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.511523107125162 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.0546208741025445, dt = 0.0015604401000096889 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.7%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.4%)
   LB compute        : 314.72 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.337847222222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.883831044799426e-27,2.516837333777197e-27,4.096883382193406e-17)
    sum a = (3.745347970852926e-25,-2.3240057796301346e-25,-1.56526660802323e-15)
    sum e = 1.237190329373419e-09
    sum de = 4.2396020494327916e-13
Info: cfl dt = 0.0015604290603958796 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9925e+04 | 11520 |      1 | 3.850e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.592589134520729 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.0561813142025542, dt = 0.0015604290603958796 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (2.0%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.4%)
   LB compute        : 311.18 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.337673611111112
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.39356957766057e-27,1.880260209543152e-27,3.8539647202438463e-17)
    sum a = (2.8690350695053795e-26,2.0853795051296776e-25,-1.5480190747122961e-15)
    sum e = 1.2371909588380977e-09
    sum de = 3.830607216866114e-13
Info: cfl dt = 0.0015604181975133365 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9979e+04 | 11520 |      1 | 3.843e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.618759919469156 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.05774174326295, dt = 0.0015604181975133365 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.6%)
   patch tree reduce : 1.91 us    (0.5%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 334.26 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.337239583333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.653262533026202e-27,2.584100929692995e-27,3.6137546844187455e-17)
    sum a = (4.597959122629318e-25,-1.2378304590252992e-25,-1.5305774515847328e-15)
    sum e = 1.2371915246619592e-09
    sum de = 3.4240285160618337e-13
Info: cfl dt = 0.0015604075782260553 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9994e+04 | 11520 |      1 | 3.841e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.626065319498437 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.0593021614604634, dt = 0.0015604075782260553 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.2%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 269.85 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.337239583333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.573231083141098e-27,2.12816469964519e-27,3.3762830302793746e-17)
    sum a = (-2.1109674091430068e-26,3.4892331614143613e-25,-1.5129475743219454e-15)
    sum e = 1.2371920272276395e-09
    sum de = 3.019924650408311e-13
Info: cfl dt = 0.0015603972641104415 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9995e+04 | 11520 |      1 | 3.841e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.626341423924742 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.0608625690386893, dt = 0.0015603972641104415 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (2.0%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 293.57 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.337239583333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.982706891267682e-27,3.0386502814744943e-27,3.141578594406792e-17)
    sum a = (-1.7599485199411838e-26,-2.318902067610132e-25,-1.4951352764506406e-15)
    sum e = 1.2371924669268427e-09
    sum de = 2.6183533659976204e-13
Info: cfl dt = 0.0015603873101194994 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9894e+04 | 11520 |      1 | 3.854e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.576923053242936 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.0624229663027998, dt = 0.0015603873101194994 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.9%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 303.69 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.337239583333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.0100977370272076e-27,2.225246178286548e-27,2.909669296225938e-17)
    sum a = (2.4084181253087953e-25,-5.439336560448638e-26,-1.477146392026891e-15)
    sum e = 1.237192844160173e-09
    sum de = 2.219371478704604e-13
Info: cfl dt = 0.0015603777635435883 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9906e+04 | 11520 |      1 | 3.852e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.582814109004518 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.0639833536129193, dt = 0.0015603777635435883 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.7%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 301.59 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.337239583333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.449452197873367e-27,2.2425821566153618e-27,2.68058213921284e-17)
    sum a = (-4.391203310688552e-25,-1.7102982780074608e-26,-1.4589867502518518e-15)
    sum e = 1.2371931593369874e-09
    sum de = 1.8230348552227904e-13
Info: cfl dt = 0.0015603686633198445 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9979e+04 | 11520 |      1 | 3.843e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.618445821351246 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.065543731376463, dt = 0.0015603686633198445 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.8%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.5%)
   LB compute        : 290.60 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.337065972222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.637660152530269e-27,2.233914167450955e-27,2.4543432137437832e-17)
    sum a = (2.8126931399367346e-25,-2.672452009647962e-25,-1.4406621749629216e-15)
    sum e = 1.2371934128752346e-09
    sum de = 1.429398387315736e-13
Info: cfl dt = 0.0015603600396849892 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8440e+04 | 11520 |      1 | 4.051e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.867987397440583 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.0671041000397827, dt = 0.0015603600396849892 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.95 us    (2.2%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 296.01 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.337065972222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.678633831380286e-27,1.6004575193160962e-27,2.230977699553828e-17)
    sum a = (1.7601010765504772e-25,3.537891785387676e-25,-1.4221784874126234e-15)
    sum e = 1.2371936052012958e-09
    sum de = 1.0385160629877989e-13
Info: cfl dt = 0.0015603519142486314 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9947e+04 | 11520 |      1 | 3.847e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.602538461885102 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.068664460079468, dt = 0.0015603519142486314 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (1.9%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 303.52 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.337065972222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.467134895768757e-27,2.6690472235041826e-27,2.010509867392189e-17)
    sum a = (-1.9475099366762867e-25,-5.071848491834442e-25,-1.4035414993814572e-15)
    sum e = 1.2371937367498432e-09
    sum de = 6.50440913946795e-14
Info: cfl dt = 0.0015603443004481047 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9971e+04 | 11520 |      1 | 3.844e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.613941341227413 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.0702248119937163, dt = 0.0015603443004481047 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (2.0%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.57 us    (0.5%)
   LB compute        : 266.42 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (57.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.337065972222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.084642443841107e-27,1.2107447264843604e-27,1.792963082489534e-17)
    sum a = (7.879174412880576e-25,-9.82221860153936e-26,-1.3847570173692674e-15)
    sum e = 1.2371938079636844e-09
    sum de = 2.652250007822306e-14
Info: cfl dt = 0.0015603372043719145 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0070e+04 | 11520 |      1 | 3.831e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.662294589053 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 3.0717851562941645, dt = 0.0015603372043719145 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (2.1%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.66 us    (0.6%)
   LB compute        : 280.03 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.337065972222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.0559862598033083e-27,1.3823709119396177e-27,1.578359806141798e-17)
    sum a = (1.0923885352378823e-25,-1.027836286332711e-25,-1.3658308368637744e-15)
    sum e = 1.2371938192936066e-09
    sum de = -1.1708051049385443e-14
Info: cfl dt = 0.0015603306259464587 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8195e+04 | 11520 |      1 | 4.086e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.748076256127474 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.0733454934985365, dt = 0.0015603306259464587 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.9%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 300.89 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.336892361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.398891911147247e-27,1.2350150961446999e-27,1.3667215988603757e-17)
    sum a = (6.816367991062981e-26,-2.12457268493546e-25,-1.3467687451814777e-15)
    sum e = 1.2371937711982482e-09
    sum de = -4.964254363886373e-14
Info: cfl dt = 0.0015603245604372481 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9981e+04 | 11520 |      1 | 3.842e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.618890440600989 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.074905824124483, dt = 0.0015603245604372481 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.9%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.5%)
   LB compute        : 280.00 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.336892361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.326774241299381e-27,8.241524097518113e-28,1.1580691220993466e-17)
    sum a = (-1.9777993580123901e-25,-1.4391705113361433e-25,-1.3275765167946536e-15)
    sum e = 1.2371936641439355e-09
    sum de = -8.727605272071824e-14
Info: cfl dt = 0.0015603190002141441 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0030e+04 | 11520 |      1 | 3.836e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.642784873489868 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.0764661486849203, dt = 0.0015603190002141441 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (2.1%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 290.30 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.336371527777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.871817399957289e-27,6.431647959989944e-28,9.52422141022141e-18)
    sum a = (2.2640579665690963e-25,4.4164098231786475e-26,-1.3082599151063372e-15)
    sum e = 1.2371934986045447e-09
    sum de = -1.246037481561631e-13
Info: cfl dt = 0.0015603139367195938 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7831e+04 | 11520 |      1 | 4.139e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.570255309915881 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.0780264676851345, dt = 0.0015603139367195938 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (1.9%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 311.89 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.336371527777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.1672832406742934e-27,8.706128316730323e-28,7.497995262155753e-18)
    sum a = (3.6221793120223693e-26,-2.6668074151041e-25,-1.2888246905720674e-15)
    sum e = 1.2371932750613538e-09
    sum de = -1.6162089520797665e-13
Info: cfl dt = 0.0015603093625685197 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6449e+04 | 11520 |      1 | 4.356e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.896337541064568 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.0795867816218543, dt = 0.0015603093625685197 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.9%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 292.97 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.336371527777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.268872073681143e-27,2.1947348564278355e-28,5.502192556611073e-18)
    sum a = (5.4174862933630015e-25,-3.4878393487567246e-25,-1.2692765780465779e-15)
    sum e = 1.2371929940028962e-09
    sum de = -1.983228523111707e-13
Info: cfl dt = 0.0015603052737008555 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0033e+04 | 11520 |      1 | 3.836e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.644001239035932 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.0811470909844227, dt = 0.0015603052737008555 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.7%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 319.86 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3359375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.034203697103019e-27,-4.084356494268547e-28,3.536984169600839e-18)
    sum a = (-8.405380297486395e-25,4.5921619714761624e-26,-1.2496212993872676e-15)
    sum e = 1.2371926559248207e-09
    sum de = -2.3470507642688464e-13
Info: cfl dt = 0.0015603016715062675 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0001e+04 | 11520 |      1 | 3.840e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.62832395217701 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.0827073962581237, dt = 0.0015603016715062675 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (1.7%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 345.55 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.335763888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.444944843507875e-27,-3.744571319023795e-29,1.6025320849118528e-18)
    sum a = (-5.436216084349452e-26,3.3577449665838067e-25,-1.2298645581628717e-15)
    sum e = 1.2371922613297295e-09
    sum de = -2.70763117311294e-13
Info: cfl dt = 0.0015602985648364963 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8823e+04 | 11520 |      1 | 3.997e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.053828565243803 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.08426769792963, dt = 0.0015602985648364963 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.8%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 303.98 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.36 us    (62.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.335763888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.879445230421967e-27,7.028005614501141e-28,-3.010105819718364e-19)
    sum a = (1.1942408751153296e-26,3.4368230317306913e-26,-1.2100120395538725e-15)
    sum e = 1.2371918107270363e-09
    sum de = -3.0649262216063473e-13
Info: cfl dt = 0.001560295971824596 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9975e+04 | 11520 |      1 | 3.843e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.615673859471347 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.0858279964944666, dt = 0.001560295971824596 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.7%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 302.71 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.335763888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.8194627454042706e-27,5.211195085641448e-28,-2.1734995649363106e-18)
    sum a = (-3.0034443766843394e-25,-4.807415013194797e-25,-1.1900694131954447e-15)
    sum e = 1.2371913046328113e-09
    sum de = -3.41889332623778e-13
Info: cfl dt = 0.001560293921428313 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9952e+04 | 11520 |      1 | 3.846e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.60424683781715 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.087388292466291, dt = 0.001560293921428313 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.7%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 1.38 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 324.22 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.335763888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.534745211251131e-27,-6.192411459052313e-28,-4.014799436673152e-18)
    sum a = (3.053247175227356e-26,6.812718767624766e-26,-1.1700423242000479e-15)
    sum e = 1.2371907435696257e-09
    sum de = -3.769490905156978e-13
Info: cfl dt = 0.001560292454629445 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9914e+04 | 11520 |      1 | 3.851e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.585849191160777 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.088948586387719, dt = 0.001560292454629445 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (2.1%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.5%)
   LB compute        : 277.04 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3355902777777775
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.224431199165363e-27,-8.390613511145911e-29,-5.8247835741426194e-18)
    sum a = (-2.1800894219356535e-25,4.955182558475023e-25,-1.1499363981291079e-15)
    sum e = 1.2371901280663877e-09
    sum de = -4.116678307457852e-13
Info: cfl dt = 0.0015602916252273958 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9971e+04 | 11520 |      1 | 3.844e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.613643858140733 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.0905088788423485, dt = 0.0015602916252273958 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.9%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.58 us    (0.5%)
   LB compute        : 292.46 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.61 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3355902777777775
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.759419490392559e-27,1.035304625796764e-27,-7.603334143322495e-18)
    sum a = (5.736128509437932e-27,-2.857719009651246e-25,-1.129757237492958e-15)
    sum e = 1.237189458658186e-09
    sum de = -4.460415891060323e-13
Info: cfl dt = 0.0015602915001754665 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7696e+04 | 11520 |      1 | 4.159e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.504488290734354 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.092069170467576, dt = 0.0015602915001754665 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (2.2%)
   patch tree reduce : 1.77 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 268.91 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.335243055555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.565949972242996e-27,-3.709899362366167e-29,-9.350342070557953e-18)
    sum a = (2.273561549888952e-26,2.906328226086324e-25,-1.1095104214117523e-15)
    sum e = 1.23718873588612e-09
    sum de = -4.800664968784012e-13
Info: cfl dt = 0.0015602921594232105 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0142e+04 | 11520 |      1 | 3.822e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.696815117056811 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.0936294619677516, dt = 0.0015602921594232105 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (2.0%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 290.98 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.334548611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.542026322149233e-27,8.778939425711342e-28,-1.1065707014362511e-17)
    sum a = (2.3413192211871213e-25,-1.8275727042062208e-25,-1.0892015034885267e-15)
    sum e = 1.2371879602971363e-09
    sum de = -5.137387851895729e-13
Info: cfl dt = 0.0015602936952421329 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0064e+04 | 11520 |      1 | 3.832e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.658941888503753 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.095189754127175, dt = 0.0015602936952421329 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.8%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (0.5%)
   LB compute        : 309.63 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.334548611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.0378960723473255e-27,2.1357925301098684e-28,-1.2749337330408022e-17)
    sum a = (-4.379390575055299e-25,-2.120065330569968e-25,-1.0688360105659138e-15)
    sum e = 1.2371871324438555e-09
    sum de = -5.470547814805702e-13
Info: cfl dt = 0.0015602962110312002 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9946e+04 | 11520 |      1 | 3.847e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.601364202878466 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.0967500478224173, dt = 0.0015602962110312002 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.8%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 305.64 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.334548611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.2049541334430754e-27,-1.3660750923105327e-28,-1.4401150032844288e-17)
    sum a = (1.7260289447430264e-25,-1.462312308807277e-25,-1.048419441523485e-15)
    sum e = 1.2371862528844102e-09
    sum de = -5.800109134822352e-13
Info: cfl dt = 0.0015602998196132816 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0118e+04 | 11520 |      1 | 3.825e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.685071933838618 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.0983103440334485, dt = 0.0015602998196132816 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.8%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 312.85 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.334201388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.443904684808146e-27,-2.919378750572255e-28,-1.6021070750651932e-17)
    sum a = (-3.1632508921150114e-25,-3.9662265375392596e-25,-1.0279572661821835e-15)
    sum e = 1.2371853221822615e-09
    sum de = -6.126037049945241e-13
Info: cfl dt = 0.001560304641049808 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9807e+04 | 11520 |      1 | 3.865e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.533710784472241 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.0998706438530617, dt = 0.00012935614693843078 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (2.1%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.5%)
   LB compute        : 265.86 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.334201388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.887705730025781e-27,-5.443497195247554e-28,-1.6138079777611744e-17)
    sum a = (-1.8996453005104316e-25,-6.578674392196614e-26,-1.0263383325509994e-15)
    sum e = 1.237185217461134e-09
    sum de = -6.151075389279743e-13
Info: cfl dt = 0.0015603056773408213 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9725e+04 | 11520 |      1 | 3.876e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2015907488564816 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 1675                                                    [SPH][rank=0]
Info: time since start : 773.328562852 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[-1.46206882e-21 -1.15955684e-14  2.28088183e-10 ... -7.63658276e-14
  9.92955269e-09 -2.05192127e-10]
(11520, 3)
[[-1.46206882e-21 -1.15955684e-14  2.28088183e-10 -6.36080089e-13
  -2.68412088e-11]
 [ 3.59016312e-06 -6.87848184e-12 -1.08986605e-13 -4.87443414e-12
  -3.85319391e-10]
 [ 2.63889942e-05  2.76005332e-05  1.47889963e-05 -1.10009593e-09
   2.25128308e-07]
 ...
 [ 3.47673860e-05  4.16234035e-05  3.94335828e-05 -4.44804885e-09
   1.01268868e-07]
 [ 1.18718136e-05  7.87458645e-06 -1.46862463e-11 -5.12779107e-11
   5.54719527e-09]
 [-2.25004552e-16 -6.43818615e-19 -7.63658276e-14  9.92955269e-09
  -2.05192127e-10]]
compute original rho
Info: Dumping state to _to_trash/dusty_settle/dump/0000031.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.96 us   (69.5%)
Info: dump to _to_trash/dusty_settle/dump/0000031.sham                      [Shamrock Dump][rank=0]
              - took 1.21 ms, bandwidth = 2.44 GB/s
Info: evolve_until (target_time = 3.20s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 3.1, dt = 0.0015603056773408213 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.24 us    (1.0%)
   patch tree reduce : 1.22 us    (0.4%)
   gen split merge   : 802.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 296.65 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.39 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.334201388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.164387944153651e-27,-6.2166818287126525e-28,-1.7739376595200757e-17)
    sum a = (5.052030001408942e-25,-8.234988433688149e-26,-1.0057529594888224e-15)
    sum e = 1.2371842575928074e-09
    sum de = -6.474865841384787e-13
Info: cfl dt = 0.001560311369161065 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6580e+04 | 11520 |      1 | 4.334e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.960107907816626 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.101560305677341, dt = 0.001560311369161065 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.9%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 285.68 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.334201388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.832984808500746e-27,-7.90173892227336e-28,-1.929260463521966e-17)
    sum a = (-3.2974851059128497e-25,6.0949711256595485e-25,-9.852135273497749e-16)
    sum e = 1.237183222050888e-09
    sum de = -6.793110342462613e-13
Info: cfl dt = 0.0015603191214172518 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7459e+04 | 11520 |      1 | 4.195e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.388888473832088 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.103120617046502, dt = 0.0015603191214172518 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (1.9%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 312.87 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.334027777777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.0066305413614445e-27,7.159759049800127e-28,-2.0813828185859544e-17)
    sum a = (-3.651092256679165e-25,2.57956757136001e-25,-9.64644845226959e-16)
    sum e = 1.237182137280331e-09
    sum de = -7.107628523759072e-13
Info: cfl dt = 0.0015603284698836955 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9427e+04 | 11520 |      1 | 3.915e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.348526521115733 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.1046809361679193, dt = 0.0015603284698836955 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.8%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 1.19 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 304.03 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 20.81 us   (6.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (58.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.334027777777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.6033349154392176e-27,8.525834142110658e-28,-2.2302944147166336e-17)
    sum a = (1.2792426440571696e-25,2.0611316722411656e-25,-9.440525689319006e-16)
    sum e = 1.2371810037188483e-09
    sum de = -7.418381505645934e-13
Info: cfl dt = 0.0015603395358335381 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9948e+04 | 11520 |      1 | 3.847e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.602605160457228 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.106241264637803, dt = 0.0015603395358335381 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (2.0%)
   patch tree reduce : 1.72 us    (0.6%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.69 us    (0.5%)
   LB compute        : 290.63 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.333767361111112
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.01633868922558e-27,1.1372401783701896e-27,-2.3759921336875602e-17)
    sum a = (-4.418933941623323e-25,3.1022750555390743e-25,-9.234420058180806e-16)
    sum e = 1.2371798219550845e-09
    sum de = -7.725339540419982e-13
Info: cfl dt = 0.0015603524290165045 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0103e+04 | 11520 |      1 | 3.827e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.678238963045274 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.1078016041736367, dt = 0.0015603524290165045 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (1.9%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 291.37 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.333506944444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.1365896088335324e-27,1.6971922783908774e-27,-2.518473657546054e-17)
    sum a = (-4.0305560191229057e-25,-6.406822839023082e-26,-9.028184277088443e-16)
    sum e = 1.2371785925813834e-09
    sum de = -8.02847376397101e-13
Info: cfl dt = 0.0015603672464540677 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0105e+04 | 11520 |      1 | 3.827e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.679656787331558 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.1093619566026534, dt = 0.0015603672464540677 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (1.8%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 330.17 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.332725694444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.738841495976526e-27,1.296384459428701e-27,-2.657737485451842e-17)
    sum a = (-1.076973383307901e-25,-1.1927915873270407e-25,-8.8218706898138e-16)
    sum e = 1.2371773161942914e-09
    sum de = -8.327756295540692e-13
Info: cfl dt = 0.0015603840689042152 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0046e+04 | 11520 |      1 | 3.834e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.650996962567978 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.1109223238491075, dt = 0.0015603840689042152 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.8%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 305.92 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.332291666666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.654241921731914e-27,1.0717101802872732e-27,-2.7937829254562005e-17)
    sum a = (2.5227662383656513e-25,-2.0125042530288427e-25,-8.615531301607537e-16)
    sum e = 1.2371759933944033e-09
    sum de = -8.623160177707976e-13
Info: cfl dt = 0.001560402957545534 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8190e+04 | 11520 |      1 | 4.086e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.746222060523243 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.1124827079180117, dt = 0.001560402957545534 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (1.9%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.20 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 322.50 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.99 us    (90.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.332291666666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.99339442783753e-27,7.055743179827244e-28,-2.926610087215849e-17)
    sum a = (5.0046195678753025e-25,1.490651432581389e-26,-8.409217715323903e-16)
    sum e = 1.2371746247862352e-09
    sum de = -8.914659402765204e-13
Info: cfl dt = 0.0015604239509801777 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4194e+04 | 11520 |      1 | 4.762e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.797415316934076 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.1140431108755573, dt = 0.0015604239509801777 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.5%)
   patch tree reduce : 2.06 us    (0.5%)
   gen split merge   : 1.01 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 383.33 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.332291666666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.0468500110842924e-27,8.772005034379815e-28,-3.056219872886362e-17)
    sum a = (-2.0784867201461413e-25,-3.844005289924373e-25,-8.202981188057081e-16)
    sum e = 1.2371732109780962e-09
    sum de = -9.202228905412276e-13
Info: cfl dt = 0.001560447062653166 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8475e+04 | 11520 |      1 | 4.046e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.885246632402543 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.1156035348265374, dt = 0.001560447062653166 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.7%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 329.05 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (74.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.332118055555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.9427733711173934e-27,-4.1259628422577e-29,-3.182613969805556e-17)
    sum a = (-1.5397399888172584e-25,-8.717760758188958e-26,-7.996872567813881e-16)
    sum e = 1.2371717525819578e-09
    sum de = -9.485844524608524e-13
Info: cfl dt = 0.001560472278780264 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8036e+04 | 11520 |      1 | 4.109e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.671309555478802 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.1171639818891905, dt = 0.001560472278780264 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (1.9%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.58 us    (0.5%)
   LB compute        : 308.71 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.332118055555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.1057315674082434e-27,7.073079158156058e-29,-3.3057948414391103e-17)
    sum a = (-3.004671763950019e-26,-2.3679386159110148e-26,-7.790942305998533e-16)
    sum e = 1.2371702502133541e-09
    sum de = -9.765483043513175e-13
Info: cfl dt = 0.001560499556861837 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9990e+04 | 11520 |      1 | 3.841e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.624705775943083 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.1187244541679706, dt = 0.001560499556861837 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.9%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 1.08 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.5%)
   LB compute        : 283.63 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.331944444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.051296595455768e-27,6.899719374867919e-29,-3.4257657192762125e-17)
    sum a = (2.1548343687062374e-25,2.368033963791823e-25,-7.585240485277842e-16)
    sum e = 1.2371687044912596e-09
    sum de = -1.0041122125404948e-12
Info: cfl dt = 0.001560528824846522 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7943e+04 | 11520 |      1 | 4.123e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.626627276286278 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.1202849537248323, dt = 0.001560528824846522 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (2.1%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 274.03 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.34 us    (62.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.331770833333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.514574706395691e-27,6.362304046674689e-28,-3.5425305954788205e-17)
    sum a = (2.4149017812037717e-25,-3.486403929751099e-26,-7.37981674531552e-16)
    sum e = 1.2371671160379996e-09
    sum de = -1.0312740393704387e-12
Info: cfl dt = 0.0015605599809868761 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0020e+04 | 11520 |      1 | 3.837e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.639697744966304 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.121845482549679, dt = 0.0015605599809868761 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.2%)
   patch tree reduce : 1.77 us    (0.6%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 271.76 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (63.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.331336805555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.1331831831617855e-27,3.8451199933309153e-28,-3.656094213941987e-17)
    sum a = (1.809668105788222e-25,1.2757823827827385e-25,-7.174720369472056e-16)
    sum e = 1.2371654854791394e-09
    sum de = -1.0580317327048617e-12
Info: cfl dt = 0.0015605928944353894 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0179e+04 | 11520 |      1 | 3.817e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.717305867039846 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.123406042530666, dt = 0.0015605928944353894 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.9%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 276.25 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.331163194444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.881811497393985e-27,6.747162765574357e-28,-3.7664620642351413e-17)
    sum a = (-5.30297868930552e-25,2.6955365983906104e-25,-6.970000173392223e-16)
    sum e = 1.2371638134434008e-09
    sum de = -1.0843833297987944e-12
Info: cfl dt = 0.0015606274065404348 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0166e+04 | 11520 |      1 | 3.819e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.711413116349638 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.124966635425101, dt = 0.0015606274065404348 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.7%)
   patch tree reduce : 1.88 us    (0.5%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.63 us    (0.5%)
   LB compute        : 327.12 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.330902777777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.2957338898920435e-27,1.2391757309436151e-27,-3.8736403727692027e-17)
    sum a = (2.3036048003327863e-27,2.5213342865556915e-25,-6.765704601401566e-16)
    sum e = 1.2371621005625748e-09
    sum de = -1.1103269572171363e-12
Info: cfl dt = 0.0015606633328953208 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0063e+04 | 11520 |      1 | 3.832e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.66158780656728 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.1265272628316416, dt = 0.0015606633328953208 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (2.2%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 269.47 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.330902777777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.8682286643034935e-27,1.631662280307961e-27,-3.977636097347395e-17)
    sum a = (5.0274891904866735e-25,-1.7209841750493417e-25,-6.5618816520703e-16)
    sum e = 1.2371603474714284e-09
    sum de = -1.1358608287817315e-12
Info: cfl dt = 0.001560700466056445 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0109e+04 | 11520 |      1 | 3.826e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.68436329219349 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.128087926164537, dt = 0.001560700466056445 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (1.9%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 314.49 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.330902777777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.696663248842252e-27,9.659607124815087e-28,-4.078456919854594e-17)
    sum a = (3.0999503008451804e-26,-9.867569520847537e-26,-6.35857889094575e-16)
    sum e = 1.2371585548076213e-09
    sum de = -1.160983247614309e-12
Info: cfl dt = 0.0015607385789409938 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8243e+04 | 11520 |      1 | 4.079e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.774599428736705 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.129648626630593, dt = 0.0015607385789409938 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (1.9%)
   patch tree reduce : 1.88 us    (0.5%)
   gen split merge   : 1.38 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 322.47 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.330902777777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.005937102228292e-27,9.129126187953382e-28,-4.176111240107081e-17)
    sum a = (4.527949507746236e-25,7.345739425311641e-26,-6.155843468396035e-16)
    sum e = 1.2371567232116108e-09
    sum de = -1.1856926007604616e-12
Info: cfl dt = 0.0015607774287066582 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0123e+04 | 11520 |      1 | 3.824e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.691977636159617 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.1312093652095343, dt = 0.0015607774287066582 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.8%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 295.02 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.33046875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.970979195998104e-27,1.1632441458634103e-27,-4.2706081705330303e-17)
    sum a = (4.227579412829875e-25,7.129594447507991e-26,-5.953722050459427e-16)
    sum e = 1.2371548533265706e-09
    sum de = -1.2099873663103613e-12
Info: cfl dt = 0.0015608167610337677 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0151e+04 | 11520 |      1 | 3.821e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.705868710362287 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.132770142638241, dt = 0.0015608167610337677 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (2.0%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 284.69 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.33046875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.318106252134974e-27,1.2589387462384629e-27,-4.361957529471112e-17)
    sum a = (-3.888168694717026e-25,6.870483981014207e-25,-5.752260890880369e-16)
    sum e = 1.2371529457982843e-09
    sum de = -1.233866102731731e-12
Info: cfl dt = 0.001560856315002102 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8867e+04 | 11520 |      1 | 3.991e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.080151547945457 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.134330959399275, dt = 0.001560856315002102 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (2.1%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1.09 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.5%)
   LB compute        : 269.32 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (63.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.330208333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.572190924441369e-27,2.7959465848711e-27,-4.4501698370699115e-17)
    sum a = (2.347707529201289e-25,7.119886299643855e-26,-5.551505774640664e-16)
    sum e = 1.2371510012750622e-09
    sum de = -1.2573274597158232e-12
Info: cfl dt = 0.0015608958280812415 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0136e+04 | 11520 |      1 | 3.823e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.699423949613616 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.135891815714277, dt = 0.0015608958280812415 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.7%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 315.42 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (71.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.330208333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.742837721190914e-27,2.4374385530312296e-27,-4.535256309648049e-17)
    sum a = (-2.6263729792499745e-25,2.8107376415812443e-25,-5.351502006076044e-16)
    sum e = 1.2371490204076193e-09
    sum de = -1.2803701682822785e-12
Info: cfl dt = 0.0015609350412915063 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9544e+04 | 11520 |      1 | 3.899e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.410878216362997 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.137452711542358, dt = 0.0015609350412915063 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (1.8%)
   patch tree reduce : 2.22 us    (0.6%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 323.89 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.330208333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.511168280723944e-27,3.038303561907918e-27,-4.617228854455664e-17)
    sum a = (-1.0239322240130622e-26,-4.794396560268774e-25,-5.15229442369069e-16)
    sum e = 1.2371470038489736e-09
    sum de = -1.3029930500143111e-12
Info: cfl dt = 0.0015609737042806301 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9939e+04 | 11520 |      1 | 3.848e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.603964416908045 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.1390136465836496, dt = 0.0015609737042806301 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (2.1%)
   patch tree reduce : 1.98 us    (0.7%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 278.03 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.329947916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.3443961692007546e-27,1.6781227022291823e-27,-4.696100065091336e-17)
    sum a = (2.3564309934963483e-25,-2.514132921157902e-25,-4.953927386089848e-16)
    sum e = 1.2371449522543148e-09
    sum de = -1.3251950074166072e-12
Info: cfl dt = 0.0015610115803041257 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0094e+04 | 11520 |      1 | 3.828e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.680007246737143 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.1405746202879303, dt = 0.0015610115803041257 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.9%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.5%)
   LB compute        : 269.01 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3297743055555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.770575286517016e-27,1.4804925492807041e-27,-4.7718832166285937e-17)
    sum a = (-1.0631392726015077e-25,-4.248701568825702e-26,-4.756444744012817e-16)
    sum e = 1.237142866280881e-09
    sum de = -1.3469750326926583e-12
Info: cfl dt = 0.0015610484509527886 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0109e+04 | 11520 |      1 | 3.826e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.687788533395915 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.1421356318682343, dt = 0.0015610484509527886 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (2.1%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 276.88 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3297743055555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.190105962074311e-27,1.5491430234628071e-27,-4.8445922601675676e-17)
    sum a = (-6.21612707740613e-26,1.3413609216049757e-25,-4.559889849928821e-16)
    sum e = 1.2371407465878175e-09
    sum de = -1.3683322033558376e-12
Info: cfl dt = 0.0015610841204478983 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9657e+04 | 11520 |      1 | 3.884e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.467493898218347 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.143696680319187, dt = 0.0015610841204478983 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (1.9%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 307.97 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.329600694444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.26291707105533e-27,1.9600057098556955e-27,-4.914241817960247e-17)
    sum a = (7.447120226578545e-26,-2.940105646262185e-25,-4.3643055038581035e-16)
    sum e = 1.237138593836017e-09
    sum de = -1.389265681318229e-12
Info: cfl dt = 0.0015611184194351969 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9612e+04 | 11520 |      1 | 3.890e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.446061932249338 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.145257764439635, dt = 0.0015611184194351969 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.9%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 290.81 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.329253472222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.051764855010377e-27,1.1254517131065961e-27,-4.980847176977032e-17)
    sum a = (-2.5717854506882054e-25,1.2197316976500175e-25,-4.1697340308668047e-16)
    sum e = 1.2371364086879833e-09
    sum de = -1.4097747163385014e-12
Info: cfl dt = 0.0015611512081559864 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7574e+04 | 11520 |      1 | 4.178e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.451895076673512 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.1468188828590704, dt = 0.0015611512081559864 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (2.0%)
   patch tree reduce : 1.74 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.5%)
   LB compute        : 261.54 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.329253472222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.6918091749101846e-27,1.6160598998120286e-27,-5.044424284622387e-17)
    sum a = (4.039047181308359e-25,-3.879417492856641e-25,-3.9762171604749016e-16)
    sum e = 1.2371341918076429e-09
    sum de = -1.4298586449340692e-12
Info: cfl dt = 0.0015611823789017612 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8616e+04 | 11520 |      1 | 4.026e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.96046958425672 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.1483800340672263, dt = 0.0015611823789017612 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.7%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 1.20 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 336.31 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.329079861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.5438206899761305e-27,6.084928393413667e-28,-5.1049897408063375e-17)
    sum a = (-2.8052525380380074e-25,-1.532015076873939e-25,-3.7837960963374077e-16)
    sum e = 1.2371319438601835e-09
    sum de = -1.4495168888490574e-12
Info: cfl dt = 0.0015612118576925277 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9907e+04 | 11520 |      1 | 3.852e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.590516339906305 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.1499412164461282, dt = 0.0015612118576925277 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.9%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 282.29 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.329079861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.536132089517436e-27,5.599521000206879e-28,-5.16256079225688e-17)
    sum a = (2.219878959395947e-25,2.0812882142440774e-26,-3.592511481388797e-16)
    sum e = 1.2371296655118719e-09
    sum de = -1.4687489576978254e-12
Info: cfl dt = 0.0015612396051243103 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0195e+04 | 11520 |      1 | 3.815e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.731729124367323 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.1515024283038207, dt = 0.0015612396051243103 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (2.1%)
   patch tree reduce : 1.61 us    (0.6%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 266.94 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.328819444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.780630153947728e-27,7.433667507395386e-28,-5.217155325273407e-17)
    sum a = (4.245040210202657e-25,1.2656651058300427e-26,-3.4024033765253495e-16)
    sum e = 1.237127357429867e-09
    sum de = -1.4875544461591385e-12
Info: cfl dt = 0.0015612656163607095 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9918e+04 | 11520 |      1 | 3.851e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.596697012963812 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.153063667908945, dt = 0.0015612656163607095 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.7%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 1.35 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 318.84 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.328645833333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.9547441463630355e-27,7.624363269012338e-28,-5.26879185780735e-17)
    sum a = (3.034011173673704e-25,4.635973455908741e-25,-3.213511239303592e-16)
    sum e = 1.2371250202820355e-09
    sum de = -1.5059330377307591e-12
Info: cfl dt = 0.0015612899202647871 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7262e+04 | 11520 |      1 | 4.226e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.300862952915184 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.1546249335253056, dt = 0.0015612899202647871 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (1.8%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 338.80 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.328211805555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.5979697123560458e-27,1.8542562420499312e-27,-5.317489530881987e-17)
    sum a = (-6.201752084175878e-25,1.1969868940826137e-25,-3.0258739501622813e-16)
    sum e = 1.237122654736755e-09
    sum de = -1.523884499653717e-12
Info: cfl dt = 0.001561312577692486 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0145e+04 | 11520 |      1 | 3.822e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.707739214812264 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.1561862234455704, dt = 0.001561312577692486 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.7%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 321.01 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.328211805555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.2778260124181096e-27,1.7575214829751496e-27,-5.3632681004070795e-17)
    sum a = (4.7492952790485316e-26,4.521070591545363e-25,-2.8395297705451153e-16)
    sum e = 1.237120261462731e-09
    sum de = -1.5414086863201705e-12
Info: cfl dt = 0.0015613336789908532 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0135e+04 | 11520 |      1 | 3.823e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.703128911772975 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.1577475360232627, dt = 0.0015613336789908532 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (2.0%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 311.77 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.327951388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.687015870972133e-27,2.734577221587099e-27,-5.4061479274943067e-17)
    sum a = (-4.052125443359616e-25,2.9029997182471917e-25,-2.6545163367624117e-16)
    sum e = 1.2371178411288075e-09
    sum de = -1.558505538699649e-12
Info: cfl dt = 0.0015613533407696375 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9951e+04 | 11520 |      1 | 3.846e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.613577845223617 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.1593088697022536, dt = 0.0015613533407696375 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (2.1%)
   patch tree reduce : 1.80 us    (0.6%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.5%)
   LB compute        : 273.12 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3277777777777775
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.665111768283811e-27,3.0601468946022237e-27,-5.446149968464805e-17)
    sum a = (-1.3953035517729128e-25,-1.9203687290046957e-25,-2.470870677428493e-16)
    sum e = 1.2371153944037747e-09
    sum de = -1.5751750809797187e-12
Info: cfl dt = 0.0015613717020311823 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9940e+04 | 11520 |      1 | 3.848e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.60837590151161 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.1608702230430232, dt = 0.0015613717020311823 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.8%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 309.57 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.327517361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.706718116272964e-27,2.366707761449669e-27,-5.483295765197606e-17)
    sum a = (-5.310984444097766e-25,-2.7083652223539327e-25,-2.2886291611294444e-16)
    sum e = 1.2371129219561995e-09
    sum de = -1.591417420489334e-12
Info: cfl dt = 0.0015613889197665135 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0104e+04 | 11520 |      1 | 3.827e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.688455353295891 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.1624315947450543, dt = 0.0015613889197665135 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (2.1%)
   patch tree reduce : 1.91 us    (0.7%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 267.79 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.327517361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.8082461792857974e-27,1.8712455008121686e-27,-5.517607433605648e-17)
    sum a = (-2.568637237023693e-25,-8.185355527732755e-26,-2.1078275118554074e-16)
    sum e = 1.237110424454255e-09
    sum de = -1.6072327529664908e-12
Info: cfl dt = 0.0015614051641370222 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8015e+04 | 11520 |      1 | 4.112e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.66959981876326 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.1639929836648206, dt = 0.0015614051641370222 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (2.0%)
   patch tree reduce : 1.97 us    (0.7%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.5%)
   LB compute        : 277.66 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (62.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.327517361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.027026225795429e-27,1.884420844342067e-27,-5.549107652766951e-17)
    sum a = (-2.370795585139603e-25,-8.633455895575936e-26,-1.9285008137941872e-16)
    sum e = 1.2371079025655402e-09
    sum de = -1.62262135050483e-12
Info: cfl dt = 0.0015614206133760275 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0123e+04 | 11520 |      1 | 3.824e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.69835936769755 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.1655543888289577, dt = 0.0015614206133760275 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.9%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 293.65 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.327517361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.36126388797496e-27,1.762722276473794e-27,-5.577819653840822e-17)
    sum a = (-4.926741152428771e-25,-3.771934427217995e-25,-1.750683479148574e-16)
    sum e = 1.2371053569569461e-09
    sum de = -1.6375835733909213e-12
Info: cfl dt = 0.0015614354485519455 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7605e+04 | 11520 |      1 | 4.173e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.469749275101982 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.1671158094423335, dt = 0.0015614354485519455 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.8%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 304.21 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.327517361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.307808304728198e-27,9.527853689516101e-28,-5.603767208017967e-17)
    sum a = (-4.4600098086756146e-26,-5.257655507562669e-26,-1.5744092844265107e-16)
    sum e = 1.2371027882944899e-09
    sum de = -1.6521198570417635e-12
Info: cfl dt = 0.0015614498483384983 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9504e+04 | 11520 |      1 | 3.905e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.39658572954319 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.1686772448908855, dt = 0.0015614498483384983 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (2.1%)
   patch tree reduce : 2.28 us    (0.8%)
   gen split merge   : 1.10 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 281.80 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.327256944444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.056436618960395e-27,1.0963272695141889e-27,-5.626974615518519e-17)
    sum a = (-7.682785515980441e-26,-4.291459025775889e-25,-1.3997112960330764e-16)
    sum e = 1.2371001972432015e-09
    sum de = -1.6662307204442445e-12
Info: cfl dt = 0.0015614639839386319 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0115e+04 | 11520 |      1 | 3.825e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.694695566089093 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.170238694739224, dt = 0.0015614639839386319 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (2.0%)
   patch tree reduce : 1.62 us    (0.6%)
   gen split merge   : 1.08 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.88 us    (0.6%)
   LB compute        : 270.93 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.327083333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.163572965032466e-27,1.4180830272969743e-28,-5.647466692542074e-17)
    sum a = (-2.956768988631841e-25,-4.334521595944663e-25,-1.2266219700083357e-16)
    sum e = 1.237097584466987e-09
    sum de = -1.679916761044255e-12
Info: cfl dt = 0.001561478014304802 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9463e+04 | 11520 |      1 | 3.910e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.376477789930679 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.1718001587231623, dt = 0.001561478014304802 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.7%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 317.71 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.326649305555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.802230406665968e-27,-5.03783530235331e-28,-5.665268761187718e-17)
    sum a = (4.1085921919722286e-25,-1.73129561495932e-25,-1.0551730259349198e-16)
    sum e = 1.2370949506285152e-09
    sum de = -1.6931786529190777e-12
Info: cfl dt = 0.0015614920817866764 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0095e+04 | 11520 |      1 | 3.828e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.685207603158648 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.173361636737467, dt = 0.0015614920817866764 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.8%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 294.59 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.326215277777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.62858467380527e-27,-5.842224696810273e-28,-5.680406635649179e-17)
    sum a = (1.3654223927264527e-25,7.062538883332139e-26,-8.853955467616392e-17)
    sum e = 1.2370922963891277e-09
    sum de = -1.7060171475972263e-12
Info: cfl dt = 0.0015615063083475847 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0145e+04 | 11520 |      1 | 3.822e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.709652556585027 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.1749231288192536, dt = 0.0015615063083475847 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.8%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 311.84 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (61.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.326215277777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.620610123774015e-27,-3.0476649902054775e-28,-5.692906612016418e-17)
    sum a = (4.1029467306294503e-25,1.4618529053815635e-25,-7.173199164344601e-17)
    sum e = 1.2370896224087366e-09
    sum de = -1.718433073327146e-12
Info: cfl dt = 0.001561520792411015 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7573e+04 | 11520 |      1 | 4.178e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.454699857340415 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.176484635127601, dt = 0.001561520792411015 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.0%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 299.84 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3258680555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.772880783495017e-27,-1.7335978328813866e-29,-5.702795455876246e-17)
    sum a = (1.7123231202762663e-25,-3.062976126265486e-25,-5.5097585276096936e-17)
    sum e = 1.237086929345743e-09
    sum de = -1.7304273311353997e-12
Info: cfl dt = 0.0015615356064880427 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0081e+04 | 11520 |      1 | 3.830e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.678868853395022 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.178046155920012, dt = 0.0015615356064880427 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.8%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 317.15 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.325694444444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.689321367950134e-27,-8.258860075846926e-28,-5.710100391425187e-17)
    sum a = (2.12252703949266e-25,6.9987979582127555e-25,-3.8639237585262576e-17)
    sum e = 1.2370842178569667e-09
    sum de = -1.7420008985802761e-12
Info: cfl dt = 0.0015615507956068554 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0124e+04 | 11520 |      1 | 3.824e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.70007542764513 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.1796076915265004, dt = 0.0015615507956068554 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.6%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 340.60 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.325434027777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.315210955614331e-27,1.0488266888932389e-27,-5.714849089853269e-17)
    sum a = (1.9730735703199555e-25,-1.7517936757353096e-25,-2.2359786492452556e-17)
    sum e = 1.2370814885975689e-09
    sum de = -1.7531548222796607e-12
Info: cfl dt = 0.0015615663766085034 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0073e+04 | 11520 |      1 | 3.831e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.675221854704496 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.1811692423221074, dt = 0.0015615663766085034 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.7%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.64 us    (0.5%)
   LB compute        : 319.78 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.325434027777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.0194591653247665e-27,8.147909814542517e-29,-5.717069659436712e-17)
    sum a = (-1.09278119514703e-25,1.912310966277463e-25,-6.26199771135402e-18)
    sum e = 1.237078742221001e-09
    sum de = -1.7638902226880231e-12
Info: cfl dt = 0.0015615823383248943 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9793e+04 | 11520 |      1 | 3.867e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.538544330346467 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.182730808698716, dt = 0.0015615823383248943 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (2.0%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.68 us    (0.5%)
   LB compute        : 304.16 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.324826388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.4504315865790796e-27,6.598073351946557e-28,-5.716790633650449e-17)
    sum a = (9.401214367824116e-27,-1.956580120537922e-25,9.651429510836289e-18)
    sum e = 1.2370759793789312e-09
    sum de = -1.7742082899868745e-12
Info: cfl dt = 0.0015615986426360212 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9816e+04 | 11520 |      1 | 3.864e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.549929648687804 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.1842923910370406, dt = 0.0015615986426360212 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.8%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 322.13 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3245659722222225
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.348149314439078e-27,5.686200891850948e-29,-5.71404096138383e-17)
    sum a = (-1.8339436762420599e-25,4.263263790621906e-27,2.5377863595857684e-17)
    sum e = 1.2370732007211898e-09
    sum de = -1.7841102837539784e-12
Info: cfl dt = 0.001561615226375657 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0009e+04 | 11520 |      1 | 3.839e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.644271105372248 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.1858539896796767, dt = 0.001561615226375657 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.9%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 302.34 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.32439236111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.772187344361865e-27,2.1461941171071565e-28,-5.708849996665663e-17)
    sum a = (6.466129220885955e-26,-2.9734670029581545e-26,4.091474400726793e-17)
    sum e = 1.237070406895709e-09
    sum de = -1.7935975332855834e-12
Info: cfl dt = 0.001561632004032001 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0067e+04 | 11520 |      1 | 3.831e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.672899307182913 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.1874156049060525, dt = 0.001561632004032001 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.8%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 301.11 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.324392361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.4833699454038256e-27,1.2551248310061238e-28,-5.701247487841569e-17)
    sum a = (-3.3994535968451003e-25,-3.2976636664896366e-25,5.625957478656423e-17)
    sum e = 1.2370675985484575e-09
    sum de = -1.8026714354048376e-12
Info: cfl dt = 0.0015616488711654552 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6763e+04 | 11520 |      1 | 4.304e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.060646872038419 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.1889772369100844, dt = 0.0015616488711654552 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.8%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 300.00 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.324131944444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.3539827770768584e-27,-6.012117284432649e-28,-5.691263568761477e-17)
    sum a = (2.7081467890269897e-25,-5.791631377655462e-25,7.140993059815841e-17)
    sum e = 1.2370647763233735e-09
    sum de = -1.81133345374518e-12
Info: cfl dt = 0.0015616657084464487 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0075e+04 | 11520 |      1 | 3.830e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.676856388810592 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.19053888578125, dt = 0.0015616657084464487 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.7%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 331.35 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.323958333333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.4140260320885706e-27,-1.7547477264425396e-27,-5.678928747976126e-17)
    sum a = (2.7386095701463814e-25,-6.556050940477513e-26,8.636345589315042e-17)
    sum e = 1.2370619408622938e-09
    sum de = -1.8195851180968853e-12
Info: cfl dt = 0.001561682386196872 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0095e+04 | 11520 |      1 | 3.828e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.686921815822362 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.192100551489696, dt = 0.001561682386196872 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.0%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 296.10 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.323958333333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.006977260928021e-27,-1.417736307730398e-27,-5.664273898798411e-17)
    sum a = (4.3448365030503065e-25,-1.180483042713583e-25,1.0111786386843168e-16)
    sum e = 1.2370590928048708e-09
    sum de = -1.827428024902671e-12
Info: cfl dt = 0.0015616987692996292 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0150e+04 | 11520 |      1 | 3.821e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.71404856234315 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.193662233875893, dt = 0.0015616987692996292 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (1.8%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.19 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 320.76 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.323784722222221
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.2015477077713285e-27,-1.647958099937046e-27,-5.647330249480963e-17)
    sum a = (7.300152736698193e-25,-3.014615681119427e-25,1.1567093639345807e-16)
    sum e = 1.2370562327884848e-09
    sum de = -1.8348638349820637e-12
Info: cfl dt = 0.0015617147223416692 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8469e+04 | 11520 |      1 | 4.047e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.893543005270192 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.1952239326451926, dt = 0.0015617147223416692 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.7%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 315.30 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.323784722222221
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.8146694414662194e-27,-2.2359944848504126e-27,-5.628129373281241e-17)
    sum a = (4.278710147312879e-25,-3.903091504862469e-26,1.300205253297979e-16)
    sum e = 1.2370533614481485e-09
    sum de = -1.841894273720128e-12
Info: cfl dt = 0.0015617301148433639 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8160e+04 | 11520 |      1 | 4.091e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.742932071767099 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.196785647367534, dt = 0.0015617301148433639 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (1.8%)
   patch tree reduce : 1.88 us    (0.5%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.4%)
   LB compute        : 331.92 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.32361111111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4038067550733306e-27,-2.104241049551427e-27,-5.606703178071182e-17)
    sum a = (2.94719606139867e-25,-2.9137757623763824e-25,1.4416455375215623e-16)
    sum e = 1.2370504794163993e-09
    sum de = -1.848521129100393e-12
Info: cfl dt = 0.0015617448264045799 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0103e+04 | 11520 |      1 | 3.827e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.691503525205109 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.1983473774823774, dt = 0.0015617448264045799 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (1.9%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 315.24 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.32361111111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.035590575369324e-27,-2.76058118908032e-27,-5.583083895721755e-17)
    sum a = (-2.1059122378623246e-25,-1.8481678464608517e-25,1.5810101305140257e-16)
    sum e = 1.237047587323186e-09
    sum de = -1.8547462545597223e-12
Info: cfl dt = 0.0015617587516278896 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0253e+04 | 11520 |      1 | 3.808e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.764639022922063 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.199909122308782, dt = 9.087769121807199e-05 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (2.0%)
   patch tree reduce : 2.18 us    (0.8%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 265.56 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.32361111111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4786981814538064e-27,-2.7002519844960478e-27,-5.580558850558642e-17)
    sum a = (-4.4184901405781055e-26,-2.629729224654433e-25,1.5885131306412757e-16)
    sum e = 1.2370474138767091e-09
    sum de = -1.8548962801815623e-12
Info: cfl dt = 0.0015617591373206646 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0897e+04 | 11520 |      1 | 3.729e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8774406052994731 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 1740                                                    [SPH][rank=0]
Info: time since start : 801.893938865 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[-1.83366599e-22 -5.07230918e-15  2.00386785e-10 ... -2.56149810e-14
  9.82438893e-09  5.16170223e-10]
(11520, 3)
[[-1.83366599e-22 -5.07230918e-15  2.00386785e-10 -5.57951695e-13
  -2.54767302e-11]
 [ 3.30188311e-06 -8.17590073e-14 -1.86079709e-14  1.07144845e-10
  -2.91148774e-10]
 [ 2.60895530e-05  2.65884029e-05  1.20307548e-05 -3.87697255e-10
   1.76182965e-07]
 ...
 [ 3.46865168e-05  4.12087119e-05  3.69948943e-05 -1.20449078e-09
   1.76786883e-07]
 [ 1.15839626e-05  6.93339530e-06 -1.66360779e-12 -2.15392054e-11
  -3.18050659e-11]
 [-2.36402492e-19 -4.14851608e-20 -2.56149810e-14  9.82438893e-09
   5.16170223e-10]]
compute original rho
Info: Dumping state to _to_trash/dusty_settle/dump/0000032.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 13.48 us   (71.2%)
Info: dump to _to_trash/dusty_settle/dump/0000032.sham                      [Shamrock Dump][rank=0]
              - took 1.23 ms, bandwidth = 2.40 GB/s
Info: evolve_until (target_time = 3.30s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 3.2, dt = 0.0015617591373206646 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.03 us    (1.0%)
   patch tree reduce : 1.57 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 303.56 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.32361111111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.5185709316100785e-27,-3.1225564165859536e-27,-5.555746692316055e-17)
    sum a = (4.395596247597074e-25,1.6496916977699276e-25,1.7262064091084312e-16)
    sum e = 1.2370445169989035e-09
    sum de = -1.8609000151660377e-12
Info: cfl dt = 0.0015617725399159192 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4708e+04 | 11520 |      1 | 4.662e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.058641683869554 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.201561759137321, dt = 0.0015617725399159192 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.2%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 267.28 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3234375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4513681056882969e-27,-2.499154635881807e-27,-5.527712055945026e-17)
    sum a = (-1.0719702199622054e-25,-2.52062351144421e-25,1.8612366141626522e-16)
    sum e = 1.2370416060079116e-09
    sum de = -1.866303523235837e-12
Info: cfl dt = 0.0015617846011285379 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8388e+04 | 11520 |      1 | 4.058e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.854958013494448 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.2031235316772366, dt = 0.0015617846011285379 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.8%)
   patch tree reduce : 1.94 us    (0.7%)
   gen split merge   : 1.03 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (0.5%)
   LB compute        : 273.61 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.39 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.323177083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.057780627630206e-27,-3.2199846147938875e-27,-5.497589116793821e-17)
    sum a = (1.1275632352670458e-25,1.8948085625566925e-25,1.9941363101998673e-16)
    sum e = 1.237038687024066e-09
    sum de = -1.871312220692692e-12
Info: cfl dt = 0.001561795693199293 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7917e+04 | 11520 |      1 | 4.126e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.625340980248067 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.2046853162783653, dt = 0.001561795693199293 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.8%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.84 us    (0.6%)
   LB compute        : 294.67 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.322743055555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.696498839257725e-27,-2.5976229927894696e-27,-5.4654069782928854e-17)
    sum a = (-2.55982709283699e-25,-1.8031359091539247e-25,2.1248861669955665e-16)
    sum e = 1.2370357605052324e-09
    sum de = -1.8759273343592975e-12
Info: cfl dt = 0.0015618058105693602 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0108e+04 | 11520 |      1 | 3.826e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.69439375326663 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.2062471119715648, dt = 0.0015618058105693602 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (2.2%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (0.5%)
   LB compute        : 280.15 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.322743055555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.3698282375488555e-27,-3.1603488493427676e-27,-5.4311993598456714e-17)
    sum a = (-4.837916800265428e-26,3.1522564146588774e-25,2.2534697452312136e-16)
    sum e = 1.2370328270668798e-09
    sum de = -1.880151029764162e-12
Info: cfl dt = 0.001561814981069663 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9959e+04 | 11520 |      1 | 3.845e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.621715751686125 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.2078089177821343, dt = 0.001561814981069663 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (0.8%)
   patch tree reduce : 1.91 us    (0.3%)
   gen split merge   : 1.26 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.2%)
   LB compute        : 703.55 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (71.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.322482638888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2862688220039728e-27,-2.2987507264007186e-27,-5.3950002188755614e-17)
    sum a = (-2.731976824837777e-25,3.428709793872806e-27,2.379871318607297e-16)
    sum e = 1.237029887320333e-09
    sum de = -1.8839855273227653e-12
Info: cfl dt = 0.0015618232650276278 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8387e+04 | 11520 |      1 | 4.058e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.854711371451643 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.2093707327632037, dt = 0.0015618232650276278 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (2.0%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 279.79 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.322482638888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.8885207091469663e-27,-2.549082253468791e-27,-5.3568437555889654e-17)
    sum a = (-3.489732437590231e-27,-4.17433022179509e-25,2.5040759020501608e-16)
    sum e = 1.2370269418733185e-09
    sum de = -1.8874331065710694e-12
Info: cfl dt = 0.0015618307552579599 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0134e+04 | 11520 |      1 | 3.823e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.707660972986394 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.210932556028231, dt = 0.0015618307552579599 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (2.2%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 266.43 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.322309027777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.6912372757650646e-27,-3.506721696352469e-27,-5.3167643999722254e-17)
    sum a = (3.1142420813794545e-25,-6.078132689908772e-26,2.626069230959199e-16)
    sum e = 1.2370239913297928e-09
    sum de = -1.8904961033997045e-12
Info: cfl dt = 0.0015618375761036717 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0159e+04 | 11520 |      1 | 3.820e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.719804318402442 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.212494386783489, dt = 0.0015618375761036717 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.8%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.5%)
   LB compute        : 275.94 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.322048611111112
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9711007359861367e-27,-3.2654048780153796e-27,-5.274796799286135e-17)
    sum a = (-1.747258583804492e-25,2.6360811271141102e-25,2.7458377861089856e-16)
    sum e = 1.2370210362898081e-09
    sum de = -1.8931769104909007e-12
Info: cfl dt = 0.0015618438815559051 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0234e+04 | 11520 |      1 | 3.810e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.756305816857745 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.214056224359593, dt = 0.0015618438815559051 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.5%)
   patch tree reduce : 2.27 us    (0.6%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 359.15 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.38 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.321701388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.617732727650894e-27,-2.6524046843085214e-27,-5.230975804673967e-17)
    sum a = (-2.2526994335680574e-25,1.3024728550177802e-25,2.863368767705269e-16)
    sum e = 1.2370180773493527e-09
    sum de = -1.895477975868922e-12
Info: cfl dt = 0.0015618498524931949 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8134e+04 | 11520 |      1 | 4.095e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.73152879610126 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.215618068241149, dt = 0.0015618498524931949 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.7%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 329.27 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.321440972222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.0050184835165957e-27,-2.566764951364181e-27,-5.1853364585858106e-17)
    sum a = (7.231100067818862e-25,-1.1108132130057457e-25,2.9786501268295894e-16)
    sum e = 1.2370151151002195e-09
    sum de = -1.8974018012664606e-12
Info: cfl dt = 0.0015618556931056998 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0106e+04 | 11520 |      1 | 3.826e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.694286939318799 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.2171799180936422, dt = 0.0015618556931056998 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.8%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 318.81 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.321006944444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1448680088348677e-27,-2.951623670263849e-27,-5.1379139811314194e-17)
    sum a = (2.514278543375864e-25,-2.3847683836726274e-25,3.0916705694291953e-16)
    sum e = 1.2370121501298697e-09
    sum de = -1.898950942107173e-12
Info: cfl dt = 0.001561861626594896 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9958e+04 | 11520 |      1 | 3.845e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.622125335775097 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.218741773786748, dt = 0.001561861626594896 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.0%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 312.23 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.320746527777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1084624543443585e-27,-3.3999320698469756e-27,-5.088743756776992e-17)
    sum a = (3.029330459524924e-25,3.2680052747647017e-25,3.202419488270658e-16)
    sum e = 1.2370091830213195e-09
    sum de = -1.900128007058697e-12
Info: cfl dt = 0.0015618678902584026 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0179e+04 | 11520 |      1 | 3.817e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.729663944143434 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.220303635413343, dt = 0.0015618678902584026 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.8%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 300.89 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.320746527777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.053723632421802e-28,-2.4325844790991616e-27,-5.0378613226418634e-17)
    sum a = (1.1329131181793176e-25,-4.206332437790081e-26,3.3108870489042235e-16)
    sum e = 1.2370062143530197e-09
    sum de = -1.9009356532052466e-12
Info: cfl dt = 0.001561874730086548 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0179e+04 | 11520 |      1 | 3.817e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.730056107289297 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.2218655033036017, dt = 0.001561874730086548 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (2.0%)
   patch tree reduce : 1.87 us    (0.7%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.5%)
   LB compute        : 263.93 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.320572916666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.734741631171627e-28,-2.8039211349023548e-27,-4.985302354478275e-17)
    sum a = (-4.665077096327154e-25,7.056159243307135e-26,3.4170641381004724e-16)
    sum e = 1.2370032446987725e-09
    sum de = -1.901376589302533e-12
Info: cfl dt = 0.0015618823950127442 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8629e+04 | 11520 |      1 | 4.024e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.973195070224545 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.2234273780336884, dt = 0.0015618823950127442 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.1%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 286.92 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3203125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7509338112102003e-27,-2.590341881891368e-27,-4.931102654722309e-17)
    sum a = (-2.986262688562652e-25,4.202241146904481e-28,3.520942347930538e-16)
    sum e = 1.237000274627646e-09
    sum de = -1.9014535718624726e-12
Info: cfl dt = 0.0015618911309685376 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0174e+04 | 11520 |      1 | 3.818e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.72757470312511 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.224989260428701, dt = 0.0015618911309685376 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (1.9%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 309.16 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.320052083333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1021607321519693e-27,-2.6503243669090637e-27,-4.8752981407242833e-17)
    sum a = (-3.103200796781833e-25,5.865108188204307e-26,3.6225140154300854e-16)
    sum e = 1.2369973047039e-09
    sum de = -1.901169405284865e-12
Info: cfl dt = 0.0015619011749008623 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0135e+04 | 11520 |      1 | 3.823e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.708721987529227 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.22655115155967, dt = 0.0015619011749008623 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (1.7%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 340.42 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.54 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.320052083333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.5615641578655368e-27,-2.5251586033750277e-27,-4.8179248323281496e-17)
    sum a = (-3.597104552967573e-25,-1.8935465033343548e-25,3.721772198549247e-16)
    sum e = 1.23699433548694e-09
    sum de = -1.9005269399757544e-12
Info: cfl dt = 0.0015619127489105466 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7460e+04 | 11520 |      1 | 4.195e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.40320937129139 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.228113052734571, dt = 0.0015619127489105466 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.7%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 317.71 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.319791666666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.1648562037082595e-27,-2.9918431399866968e-27,-4.75901884050852e-17)
    sum a = (-3.450842637405203e-25,-9.343537567924151e-26,3.818710662752244e-16)
    sum e = 1.2369913675312732e-09
    sum de = -1.899529071122645e-12
Info: cfl dt = 0.001561926054667635 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0152e+04 | 11520 |      1 | 3.821e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.71700870463157 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.2296749654834813, dt = 0.001561926054667635 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.2%)
   patch tree reduce : 1.93 us    (0.7%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.5%)
   LB compute        : 269.13 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.319791666666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.709899362366167e-27,-3.0778295924976137e-27,-4.6986163566046093e-17)
    sum a = (-2.8414015200492504e-26,-1.1618225956404476e-25,3.9133238774570493e-16)
    sum e = 1.2369884013864827e-09
    sum de = -1.8981787369467502e-12
Info: cfl dt = 0.001561941268253396 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9800e+04 | 11520 |      1 | 3.866e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.545202285374586 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.231236891538149, dt = 0.001561941268253396 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.7%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 328.67 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.31953125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.5063749767858926e-27,-3.267485195414837e-27,-4.636753641771223e-17)
    sum a = (1.875711248829671e-25,-2.379363025629703e-25,4.0056070325217633e-16)
    sum e = 1.2369854375972122e-09
    sum de = -1.896478921831008e-12
Info: cfl dt = 0.0015619585355659141 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0087e+04 | 11520 |      1 | 3.829e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.685905544263758 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.2327988328064023, dt = 0.0015619585355659141 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (2.3%)
   patch tree reduce : 2.22 us    (0.8%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 263.25 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3193576388888895
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.0362232445084605e-27,-3.732436134193625e-27,-4.573467016482032e-17)
    sum a = (3.3024744004758823e-25,7.563895376601435e-26,4.095556004251726e-16)
    sum e = 1.2369824767031597e-09
    sum de = -1.894432648475146e-12
Info: cfl dt = 0.0015619779684134282 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0106e+04 | 11520 |      1 | 3.826e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.695136753405757 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.234360791341968, dt = 0.0015619779684134282 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.8%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 311.15 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3193576388888895
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4207960138355684e-27,-3.385023128484195e-27,-4.5087928511939355e-17)
    sum a = (3.4243705984971044e-25,2.724206839350803e-25,4.183167368591675e-16)
    sum e = 1.2369795192390877e-09
    sum de = -1.8920429833000932e-12
Info: cfl dt = 0.0015619996413999474 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7311e+04 | 11520 |      1 | 4.218e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.330811667035137 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.2359227693103816, dt = 0.0015619996413999474 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (2.0%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 302.25 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3193576388888895
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8684717442795586e-27,-2.7751434108765235e-27,-4.442767556790782e-17)
    sum a = (-1.129851584406449e-25,-3.6307224821428087e-25,4.268438375134365e-16)
    sum e = 1.2369765657348266e-09
    sum de = -1.8893130307228647e-12
Info: cfl dt = 0.0015620235896876022 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9649e+04 | 11520 |      1 | 3.885e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.472523047109124 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.2374847689517816, dt = 0.0015620235896876022 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.72 us    (2.1%)
   patch tree reduce : 2.42 us    (0.7%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.59 us    (0.5%)
   LB compute        : 303.10 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 5.45 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.319097222222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4211427334021446e-27,-3.836105284599932e-27,-4.375427576054342e-17)
    sum a = (9.499023957555283e-26,4.0541364168457587e-25,4.3513669739871505e-16)
    sum e = 1.2369736167153031e-09
    sum de = -1.8862459338437664e-12
Info: cfl dt = 0.0015620498076965514 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7616e+04 | 11520 |      1 | 4.171e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.480400841200959 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.2390467925414694, dt = 0.0015620498076965514 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (2.0%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 303.92 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.319097222222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0986935364862066e-27,-2.655525160407708e-27,-4.30680937446778e-17)
    sum a = (1.8166233002937419e-25,4.081298427691344e-25,4.431951784072993e-16)
    sum e = 1.236970672700557e-09
    sum de = -1.882844875035415e-12
Info: cfl dt = 0.0015620782487791858 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0026e+04 | 11520 |      1 | 3.837e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.657084455035532 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.240608842349166, dt = 0.0015620782487791858 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (2.0%)
   patch tree reduce : 1.99 us    (0.7%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (0.5%)
   LB compute        : 271.08 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (63.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.319097222222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7360248698474206e-27,-1.9846227990826114e-27,-4.2369494322178056e-17)
    sum a = (4.681497735000206e-25,2.5414908285586034e-25,4.510192084114146e-16)
    sum e = 1.2369677342057627e-09
    sum de = -1.8791130741271025e-12
Info: cfl dt = 0.001562108825879408 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7213e+04 | 11520 |      1 | 4.233e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.284170134730006 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.242170920597945, dt = 0.001562108825879408 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (1.8%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 322.91 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.319097222222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.818526226295053e-28,-1.717995452385454e-27,-4.1658842362584e-17)
    sum a = (-7.973613888424623e-26,4.6314366303800906e-26,4.586087837085897e-16)
    sum e = 1.2369648017412527e-09
    sum de = -1.87505378650675e-12
Info: cfl dt = 0.0015621414131610767 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9999e+04 | 11520 |      1 | 3.840e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.644144091052182 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.2437330294238245, dt = 0.0015621414131610767 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.7%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 322.09 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.319097222222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3501259922480239e-27,-1.784218889601523e-27,-4.0936502717799905e-17)
    sum a = (-3.7802695655984886e-25,1.450194459955436e-25,4.659639648807962e-16)
    sum e = 1.2369618758125331e-09
    sum de = -1.8706703044857774e-12
Info: cfl dt = 0.0015621758485666719 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0076e+04 | 11520 |      1 | 3.830e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.682392271876758 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.2452951708369855, dt = 0.0015621758485666719 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.6%)
   patch tree reduce : 2.20 us    (0.6%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.56 us    (0.4%)
   LB compute        : 336.24 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.31875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1773988780990215e-27,-1.4749450362154837e-27,-4.020284014896026e-17)
    sum a = (2.9256994482709404e-25,5.574321422108115e-25,4.730848789555762e-16)
    sum e = 1.2369589569203042e-09
    sum de = -1.865965956578599e-12
Info: cfl dt = 0.0015622119372401624 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0077e+04 | 11520 |      1 | 3.830e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.683168584300898 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.246857346685552, dt = 0.0015622119372401624 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.8%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 304.21 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.318576388888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.196529224254733e-27,-3.016460229213613e-28,-3.9458219243726025e-17)
    sum a = (-2.1510585926262216e-25,2.0375044673768252e-25,4.799717165055697e-16)
    sum e = 1.236956045560455e-09
    sum de = -1.860944103609466e-12
Info: cfl dt = 0.0015622494557268806 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9580e+04 | 11520 |      1 | 3.895e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.440640629408874 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.248419558622792, dt = 0.0015622494557268806 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (2.0%)
   patch tree reduce : 1.93 us    (0.7%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.5%)
   LB compute        : 275.49 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.318402777777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.926373911897797e-27,-2.6350687059797078e-28,-3.870300434093142e-17)
    sum a = (-2.620371263552539e-25,1.5056401194444815e-25,4.866247364327789e-16)
    sum e = 1.2369531422240758e-09
    sum de = -1.8556081424813957e-12
Info: cfl dt = 0.001562288156844271 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0239e+04 | 11520 |      1 | 3.810e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.762931909630439 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.249981808078519, dt = 0.001562288156844271 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (2.0%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 266.06 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.318229166666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.368094639715974e-27,-5.478169151905181e-29,-3.793755943998744e-17)
    sum a = (1.799436411378556e-25,-1.575833495697849e-25,4.930442565861478e-16)
    sum e = 1.2369502473974367e-09
    sum de = -1.8499615023383632e-12
Info: cfl dt = 0.001562286574452131 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0179e+04 | 11520 |      1 | 3.817e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.733837090813307 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.2515440962353637, dt = 0.001562286574452131 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.8%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 296.77 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.31796875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.732904393748234e-27,-5.575250630546539e-28,-3.716226844711193e-17)
    sum a = (-1.4271705471369385e-25,2.3522287523494437e-25,4.992305026434449e-16)
    sum e = 1.2369473616381923e-09
    sum de = -1.844007798544827e-12
Info: cfl dt = 0.0015622702932612267 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0147e+04 | 11520 |      1 | 3.821e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.718018600500251 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.2531063828098157, dt = 0.0015622702932612267 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (1.9%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.65 us    (0.5%)
   LB compute        : 299.70 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.63 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (64.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.31796875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2127642738898017e-27,1.497828527609518e-28,-3.637750311885474e-17)
    sum a = (-3.938110181086673e-26,-4.29860144884736e-25,5.051838837576576e-16)
    sum e = 1.236944485450217e-09
    sum de = -1.8377506183211077e-12
Info: cfl dt = 0.0015622556060289694 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0187e+04 | 11520 |      1 | 3.816e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.737699492995805 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.254668653103077, dt = 0.0015622556060289694 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.9%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 1.10 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 285.13 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.317534722222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.195428295560988e-27,-1.0547209215250356e-27,-3.5583626369071476e-17)
    sum a = (-2.850131918735641e-25,-1.9398959749942717e-25,5.109049401446818e-16)
    sum e = 1.236941619301647e-09
    sum de = -1.831193517594498e-12
Info: cfl dt = 0.0015622425397531648 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0217e+04 | 11520 |      1 | 3.812e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.752155797504395 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.256230908709106, dt = 0.0015622425397531648 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (2.0%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.56 us    (0.5%)
   LB compute        : 268.09 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (63.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.317361111111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.823337430630626e-27,-1.1823137220251056e-27,-3.4781000061673257e-17)
    sum a = (-5.999947427645822e-26,3.6722040110879944e-25,5.163942760520003e-16)
    sum e = 1.2369387636551016e-09
    sum de = -1.8243400783360924e-12
Info: cfl dt = 0.001562231085568407 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0209e+04 | 11520 |      1 | 3.813e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.748052875517297 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.257793151248859, dt = 0.001562231085568407 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (1.8%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 319.20 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3171875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.7408181737854722e-27,-1.8549496811830837e-28,-3.396998503409543e-17)
    sum a = (2.9598409239917067e-25,3.927250924261504e-25,5.216525576372532e-16)
    sum e = 1.2369359189676185e-09
    sum de = -1.8171939083226053e-12
Info: cfl dt = 0.0015622211980586846 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0206e+04 | 11520 |      1 | 3.814e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.746601653382703 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.2593553823344275, dt = 0.0015622211980586846 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (2.1%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 1.06 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 277.65 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.317187499999999
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0234553905391543e-27,4.985827367366868e-28,-3.3150941025100856e-17)
    sum a = (-1.8027787880003512e-25,-4.9599620877002773e-26,5.26680512071199e-16)
    sum e = 1.23693308569069e-09
    sum de = -1.8097586424059658e-12
Info: cfl dt = 0.001562212795607995 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6720e+04 | 11520 |      1 | 4.311e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.044581149430572 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.2609176035324863, dt = 0.001562212795607995 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (2.1%)
   patch tree reduce : 1.94 us    (0.7%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.5%)
   LB compute        : 268.02 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (62.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.317187499999999
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.638189182078894e-27,4.160634798915328e-29,-3.232422660142795e-17)
    sum a = (-3.2091704315123733e-25,-4.0160458052616887e-25,5.314789282097352e-16)
    sum e = 1.2369302642702785e-09
    sum de = -1.8020379427982325e-12
Info: cfl dt = 0.001562205761777024 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8416e+04 | 11520 |      1 | 4.054e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.872509556089947 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.2624798163280944, dt = 0.001562205761777024 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.9%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 298.72 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (61.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.317013888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.2491090583862945e-27,-8.491162185453031e-28,-3.1490199084048915e-17)
    sum a = (-2.990466663307389e-25,3.60632035904717e-25,5.360486550225317e-16)
    sum e = 1.2369274551468394e-09
    sum de = -1.7940354945910106e-12
Info: cfl dt = 0.0015621999476784004 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8669e+04 | 11520 |      1 | 4.018e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.996050544674178 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.2640420220898716, dt = 0.0015621999476784004 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (2.0%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.57 us    (0.5%)
   LB compute        : 265.35 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.317013888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.709205923233015e-27,3.0823369468631055e-28,-3.064921447637527e-17)
    sum a = (-2.5218560995033885e-25,2.1790284600619302e-25,5.403906003344942e-16)
    sum e = 1.2369246587553508e-09
    sum de = -1.7857550095629444e-12
Info: cfl dt = 0.0015621951752933 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0197e+04 | 11520 |      1 | 3.815e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.741573804765803 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.26560422203755, dt = 0.0015621951752933 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (2.0%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 1.10 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 271.88 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3167534722222225
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.051764855010377e-27,5.2840061946224665e-28,-2.980162739441326e-17)
    sum a = (7.83771715430505e-26,3.469754456164106e-25,5.445057316420034e-16)
    sum e = 1.2369218755253092e-09
    sum de = -1.7772002225013663e-12
Info: cfl dt = 0.0015621912416414513 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0139e+04 | 11520 |      1 | 3.822e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.713533995232702 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.267166417212843, dt = 0.0015621912416414513 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (2.1%)
   patch tree reduce : 1.71 us    (0.6%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.5%)
   LB compute        : 268.98 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3167534722222225
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.699844494935455e-27,1.1715654154612411e-27,-2.8947790990265024e-17)
    sum a = (-2.661197492516896e-25,-7.390646543574601e-25,5.48395075234527e-16)
    sum e = 1.2369191058807417e-09
    sum de = -1.7683748914460347e-12
Info: cfl dt = 0.001562187923693926 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0270e+04 | 11520 |      1 | 3.806e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.777581310581054 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.2687286084544844, dt = 0.001562187923693926 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (2.3%)
   patch tree reduce : 1.85 us    (0.7%)
   gen split merge   : 1.45 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 260.31 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.316579861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.3818418823909924e-27,-8.321269597830655e-28,-2.8088056877062424e-17)
    sum a = (1.1712811054166485e-25,3.2885657450626754e-26,5.520597162064194e-16)
    sum e = 1.2369163502402012e-09
    sum de = -1.7592827982485058e-12
Info: cfl dt = 0.001562184983893027 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0308e+04 | 11520 |      1 | 3.801e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.796039290350942 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.270290796378178, dt = 0.001562184983893027 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.9%)
   patch tree reduce : 1.72 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 292.95 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.316579861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.891580415252136e-27,-1.5567708539274853e-28,-2.7222775049256223e-17)
    sum a = (-1.5306958089231161e-25,-3.6722317486533207e-25,5.555007933198191e-16)
    sum e = 1.2369136090167434e-09
    sum de = -1.7499277473363978e-12
Info: cfl dt = 0.0015621821761054144 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7182e+04 | 11520 |      1 | 4.238e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.269771614648842 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.271852981362071, dt = 0.0015621821761054144 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.9%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 294.05 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.316319444444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.37560093019262e-27,-1.0803781694516801e-27,-2.6352293811607928e-17)
    sum a = (3.0238973639166737e-26,2.1515335984324312e-26,5.587195059151748e-16)
    sum e = 1.2369108826179011e-09
    sum de = -1.7403135645214462e-12
Info: cfl dt = 0.001562179251887962 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8985e+04 | 11520 |      1 | 3.975e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.149819105951135 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.2734151635381767, dt = 0.001562179251887962 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (2.0%)
   patch tree reduce : 1.76 us    (0.6%)
   gen split merge   : 1.03 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 274.58 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.316319444444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.169302788079735e-27,-7.4579378770557255e-28,-2.5476959684140068e-17)
    sum a = (-2.720708438924048e-25,5.0557052288146505e-25,5.617171076914293e-16)
    sum e = 1.2369081714456465e-09
    sum de = -1.730444095301511e-12
Info: cfl dt = 0.0015621759668242436 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0263e+04 | 11520 |      1 | 3.807e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.77380081116666 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.2749773427900646, dt = 0.0015621759668242436 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (2.1%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.65 us    (0.6%)
   LB compute        : 276.33 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3160590277777775
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.833617477639882e-27,4.306257016877364e-28,-2.4597117322755456e-17)
    sum a = (-6.424297505178528e-26,-5.383167990663282e-26,5.644949084839193e-16)
    sum e = 1.2369054758963443e-09
    sum de = -1.7203232092759344e-12
Info: cfl dt = 0.0015621720867926771 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0365e+04 | 11520 |      1 | 3.794e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.823770803144518 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.2765395187568886, dt = 0.0015621720867926771 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.7%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 304.04 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3160590277777775
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.753871977327338e-27,-8.980036774325582e-29,-2.3713109426814226e-17)
    sum a = (-2.691809363049915e-25,-3.3614670011310033e-25,5.670542731952813e-16)
    sum e = 1.236902796360688e-09
    sum de = -1.7099547923794477e-12
Info: cfl dt = 0.0015621673939687282 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0216e+04 | 11520 |      1 | 3.813e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.75069735203328 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.2781016908436813, dt = 0.0015621673939687282 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.9%)
   patch tree reduce : 1.69 us    (0.6%)
   gen split merge   : 1.05 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 270.65 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.71 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (63.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.315798611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.3276928600110775e-27,-8.192983358197434e-28,-2.2825276646454312e-17)
    sum a = (1.381257942130908e-25,-5.311189008642047e-26,5.693966212293723e-16)
    sum e = 1.2369001332236321e-09
    sum de = -1.699342749389649e-12
Info: cfl dt = 0.001562161692390435 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0332e+04 | 11520 |      1 | 3.798e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.807246273715268 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.27966385823765, dt = 0.001562161692390435 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.79 us    (2.3%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.5%)
   LB compute        : 278.57 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.315798611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.799638960115407e-27,-7.003735244840802e-28,-2.1933957487171447e-17)
    sum a = (-9.940588661568502e-26,-6.035354429784591e-25,5.715234259906174e-16)
    sum e = 1.2368974868643232e-09
    sum de = -1.6884910041967727e-12
Info: cfl dt = 0.0015621548129227127 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0333e+04 | 11520 |      1 | 3.798e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.807757637742023 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.2812260199300405, dt = 0.0015621548129227127 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.8%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 309.68 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.315798611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.130062707062599e-27,-2.035590575369324e-27,-2.103948821011233e-17)
    sum a = (3.948165048517385e-25,1.7774301204879596e-25,5.734362139030658e-16)
    sum e = 1.2368948576560104e-09
    sum de = -1.6774034982476297e-12
Info: cfl dt = 0.0015621466174788434 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0224e+04 | 11520 |      1 | 3.812e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.754540585780445 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.2827881747429632, dt = 0.0015621466174788434 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (1.8%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.56 us    (0.5%)
   LB compute        : 322.27 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3153645833333325
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.1152145356938354e-27,-1.156656474098461e-27,-2.0142202732743617e-17)
    sum a = (3.6322272450617495e-25,-3.845258681157546e-25,5.751365645666861e-16)
    sum e = 1.2368922459659578e-09
    sum de = -1.666084186073603e-12
Info: cfl dt = 0.001562137002374393 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0252e+04 | 11520 |      1 | 3.808e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.768111797106858 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.284350321360442, dt = 0.001562137002374393 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (2.1%)
   patch tree reduce : 1.71 us    (0.6%)
   gen split merge   : 1.09 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 270.13 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.39 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3153645833333325
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.619752275056335e-27,-2.214151152156107e-27,-1.924243252535337e-17)
    sum a = (-3.6789581082449003e-25,-2.503405417768032e-25,5.766261108361078e-16)
    sum e = 1.2368896521553652e-09
    sum de = -1.6545370404181064e-12
Info: cfl dt = 0.0015621259007203598 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0326e+04 | 11520 |      1 | 3.799e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.804030494364827 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.2859124583628163, dt = 0.0015621259007203598 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (2.1%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 275.49 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3153645833333325
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.742430231630321e-27,-2.499501355448383e-27,-1.8340506504843914e-17)
    sum a = (1.8393889070351404e-25,-2.0997336951859354e-27,5.779065350497103e-16)
    sum e = 1.2368870765792654e-09
    sum de = -1.6427660459926955e-12
Info: cfl dt = 0.0015621132837819074 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0271e+04 | 11520 |      1 | 3.806e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.777106185074278 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.2874745842635367, dt = 0.0015621132837819074 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.7%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 324.28 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.31484375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.029921522316071e-27,-2.276560674139837e-27,-1.7436750937783496e-17)
    sum a = (-6.808254753205097e-26,1.8807594857190218e-25,5.789795707588606e-16)
    sum e = 1.2368845195864466e-09
    sum de = -1.6307752001846248e-12
Info: cfl dt = 0.0015620991612721206 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6898e+04 | 11520 |      1 | 4.283e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.130739618806228 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.2890366975473184, dt = 0.0015620991612721206 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (1.8%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.78 us    (0.5%)
   LB compute        : 316.73 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.314670138888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.3388486561355345e-27,-1.856683279015965e-27,-1.653148933424908e-17)
    sum a = (1.9527384677402569e-25,3.545526550243686e-25,5.798470028611864e-16)
    sum e = 1.236881981519361e-09
    sum de = -1.618568513527964e-12
Info: cfl dt = 0.0015620835805702541 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0064e+04 | 11520 |      1 | 3.832e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.675827398975231 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.2905987967085903, dt = 0.0015620835805702541 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (1.9%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 329.14 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (71.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.314496527777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.8374921628662376e-27,-1.1590835110644951e-27,-1.5625042344322235e-17)
    sum a = (1.3506322028152253e-25,-6.034307336693531e-27,5.805106636898794e-16)
    sum e = 1.2368794627140493e-09
    sum de = -1.6061500037272681e-12
Info: cfl dt = 0.0015620666248939263 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0211e+04 | 11520 |      1 | 3.813e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.747700801559676 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.2921608802891607, dt = 0.0015620666248939263 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.6%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 308.31 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.314496527777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.647143120815861e-27,-1.469050803583687e-27,-1.471772766435696e-17)
    sum a = (2.777743807625846e-25,1.2895471495758167e-25,5.809724330544802e-16)
    sum e = 1.2368769635000697e-09
    sum de = -1.5935237007425864e-12
Info: cfl dt = 0.0015620484104839915 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0285e+04 | 11520 |      1 | 3.804e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.783283498886062 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.2937229469140545, dt = 0.0015620484104839915 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.9%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 1.04 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 276.79 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (63.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.313802083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.136771918815581e-27,-1.1205976391745282e-27,-1.3809859941534734e-17)
    sum a = (3.901572873160865e-25,4.141703910580263e-26,5.812342400592867e-16)
    sum e = 1.236874484200431e-09
    sum de = -1.5806936393170578e-12
Info: cfl dt = 0.0015620290828857527 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8988e+04 | 11520 |      1 | 3.974e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.15028786607358 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.2952849953245384, dt = 0.0015620290828857527 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.7%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 309.16 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.313802083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.3968723637418052e-27,-1.1254517131065961e-27,-1.2901750676910619e-17)
    sum a = (-2.939960024044223e-25,2.962378911219045e-25,5.812980601610089e-16)
    sum e = 1.2368720251315462e-09
    sum de = -1.567663862478923e-12
Info: cfl dt = 0.0015620088124455572 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0073e+04 | 11520 |      1 | 3.831e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.679673998862784 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.296847024407424, dt = 0.0015620088124455572 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.8%)
   patch tree reduce : 1.75 us    (0.6%)
   gen split merge   : 1.68 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.5%)
   LB compute        : 292.96 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.313628472222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.4266294764733484e-27,-5.169588737652295e-28,-1.1993708139977399e-17)
    sum a = (-3.061485232129208e-25,2.036644602851716e-25,5.811659130482205e-16)
    sum e = 1.2368695866031877e-09
    sum de = -1.5544384180745762e-12
Info: cfl dt = 0.0015619877891561726 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0304e+04 | 11520 |      1 | 3.801e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.792212296668943 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.29840903321987, dt = 0.0015619877891561726 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.8%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 323.95 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (63.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.313628472222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.87632475432278e-27,-2.680142249634624e-28,-1.1086037287828618e-17)
    sum a = (4.903509207870328e-25,2.0915649821973984e-25,5.808398626270797e-16)
    sum e = 1.2368671689184538e-09
    sum de = -1.541021358510102e-12
Info: cfl dt = 0.0015619662170074315 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0205e+04 | 11520 |      1 | 3.814e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.743511603239112 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.2999710210090263, dt = 2.8978990973538288e-05 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (2.0%)
   patch tree reduce : 1.76 us    (0.6%)
   gen split merge   : 1.08 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 270.97 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.313628472222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.252229534485481e-27,-2.2814147480719047e-28,-1.1069459777995725e-17)
    sum a = (-2.1499664259915064e-25,1.2676760793161851e-26,5.808332806911548e-16)
    sum e = 1.2368671347159299e-09
    sum de = -1.5406757327089146e-12
Info: cfl dt = 0.0015619656607504507 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1010e+04 | 11520 |      1 | 3.715e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.28082182875141715 (tsim/hr)                           [sph::Model][rank=0]
Info: iteration since start : 1805                                                    [SPH][rank=0]
Info: time since start : 830.538873692 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[-2.31433767e-23 -2.22442039e-15  1.62461685e-10 ... -8.62583519e-15
  8.74625669e-09  1.48289191e-09]
(11520, 3)
[[-2.31433767e-23 -2.22442039e-15  1.62461685e-10 -4.89615739e-13
  -2.41854718e-11]
 [ 3.01777878e-06 -9.75126945e-16 -3.18138329e-15  2.35058232e-09
  -2.20040567e-10]
 [ 2.57879672e-05  2.55663623e-05  9.45787518e-06 -1.37158655e-10
   9.52328902e-08]
 ...
 [ 3.45948559e-05  4.07565333e-05  3.44576110e-05 -3.26549310e-10
   2.24840096e-07]
 [ 1.12968398e-05  6.01416795e-06 -1.85512691e-13 -8.99104723e-12
  -2.24614558e-11]
 [-2.54551635e-22 -2.69969912e-21 -8.62583519e-15  8.74625669e-09
   1.48289191e-09]]
compute original rho
Info: Dumping state to _to_trash/dusty_settle/dump/0000033.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.81 us   (70.8%)
Info: dump to _to_trash/dusty_settle/dump/0000033.sham                      [Shamrock Dump][rank=0]
              - took 1.20 ms, bandwidth = 2.47 GB/s
Info: evolve_until (target_time = 3.40s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 3.3, dt = 0.0015619656607504507 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.23 us    (1.0%)
   patch tree reduce : 1.46 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 309.70 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.313628472222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.5892409531976226e-27,-2.1184565517810544e-28,-1.0162218234255596e-17)
    sum a = (2.3066698013013207e-25,1.1926945058483994e-25,5.803105989392482e-16)
    sum e = 1.2368647282622379e-09
    sum de = -1.5271634591894831e-12
Info: cfl dt = 0.0015619439003480575 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4674e+04 | 11520 |      1 | 4.669e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.043533169313095 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.3015619656607504, dt = 0.0015619439003480575 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.6%)
   patch tree reduce : 2.17 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 355.38 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.313628472222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.8611298633874404e-27,6.691687634922152e-29,-9.256213839419518e-18)
    sum a = (5.245797698385761e-26,2.1689389206745603e-26,5.795996143593985e-16)
    sum e = 1.2368623534714087e-09
    sum de = -1.5133715267144174e-12
Info: cfl dt = 0.001561921867655421 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8557e+04 | 11520 |      1 | 4.034e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.938984290558455 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.3031239095610987, dt = 0.001561921867655421 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.44 us    (1.8%)
   patch tree reduce : 1.59 us    (0.4%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.70 us    (0.5%)
   LB compute        : 340.81 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (74.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.313628472222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.9561310246293405e-27,3.36317979578989e-29,-8.351479786309355e-18)
    sum a = (3.2270576939520434e-26,3.4658365250617943e-25,5.787012119727379e-16)
    sum e = 1.23686000047441e-09
    sum de = -1.4994006687929797e-12
Info: cfl dt = 0.001561899926086692 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0323e+04 | 11520 |      1 | 3.799e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.800680564132385 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.304685831428754, dt = 0.001561899926086692 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.9%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 289.84 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.313194444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.9062034070423564e-27,7.880935748278783e-28,-7.448308023254453e-18)
    sum a = (4.792357849217305e-26,-6.619569965074287e-27,5.776176284357359e-16)
    sum e = 1.2368576694712823e-09
    sum de = -1.4852544990906223e-12
Info: cfl dt = 0.001561878274590051 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6610e+04 | 11520 |      1 | 4.329e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.987947653905552 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.3062477313548406, dt = 0.001561878274590051 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (2.3%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 261.73 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.313194444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.8146694414662194e-27,5.481636347570944e-28,-6.546985822880797e-18)
    sum a = (7.34795843053773e-26,3.3217398731926933e-25,5.763511354884332e-16)
    sum e = 1.2368553607319746e-09
    sum de = -1.4709370790915723e-12
Info: cfl dt = 0.0015618570969910203 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5990e+04 | 11520 |      1 | 4.433e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.685242994023811 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.3078096096294307, dt = 0.0015618570969910203 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.7%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 326.08 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.313020833333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.6451235734104198e-27,1.2866763115645651e-27,-5.647796765485376e-18)
    sum a = (9.508749441397747e-26,2.420567178921628e-25,5.749040425457292e-16)
    sum e = 1.2368530745194718e-09
    sum de = -1.4564524666089823e-12
Info: cfl dt = 0.001561836556536994 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0223e+04 | 11520 |      1 | 3.812e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.751028406365265 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.3093714667264216, dt = 0.001561836556536994 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (2.0%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 267.99 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.313020833333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4610154835584163e-27,1.6184869367780624e-27,-4.751020691524498e-18)
    sum a = (2.8974036644426504e-25,1.3725102074661884e-25,5.73278696549108e-16)
    sum e = 1.2368508110901964e-09
    sum de = -1.4418047182170863e-12
Info: cfl dt = 0.001561816791672375 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0397e+04 | 11520 |      1 | 3.790e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.8358172511337 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 3.3109333032829587, dt = 0.001561816791672375 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.9%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.5%)
   LB compute        : 291.23 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.312586805555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8910085161070164e-27,1.7186888915186067e-27,-3.856933659283497e-18)
    sum a = (-4.941839055955335e-25,3.1124599428072525e-25,5.714774791924051e-16)
    sum e = 1.2368485706940589e-09
    sum de = -1.4269978864710928e-12
Info: cfl dt = 0.0015617979125975923 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0259e+04 | 11520 |      1 | 3.807e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.768673605797792 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.312495120074631, dt = 0.0015617979125975923 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.8%)
   patch tree reduce : 1.76 us    (0.6%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.5%)
   LB compute        : 285.63 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.312152777777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.277886782412126e-27,2.3712151158151605e-27,-2.9658079109495276e-18)
    sum a = (1.086123312669849e-25,1.2394947129448654e-25,5.695028075028647e-16)
    sum e = 1.2368463535745094e-09
    sum de = -1.4120360217600293e-12
Info: cfl dt = 0.0015617799987302505 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0123e+04 | 11520 |      1 | 3.824e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.70168151151893 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.3140569179872283, dt = 0.0015617799987302505 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (2.0%)
   patch tree reduce : 1.93 us    (0.7%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 271.04 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.311979166666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.6537915625748268e-27,2.400339559407568e-27,-2.07791183611309e-18)
    sum a = (-1.3480872811965555e-25,-3.9887867129374617e-25,5.673571346598865e-16)
    sum e = 1.2368441599685907e-09
    sum de = -1.3969231711410299e-12
Info: cfl dt = 0.0015617630971300068 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0187e+04 | 11520 |      1 | 3.816e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.732996113957428 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.3156186979859585, dt = 0.0015617630971300068 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (2.0%)
   patch tree reduce : 1.89 us    (0.7%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (0.5%)
   LB compute        : 268.82 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.311805555555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.049745307604935e-27,1.3546333466135154e-27,-1.1935099348007906e-18)
    sum a = (-1.5951527099474792e-26,2.3717005232083674e-25,5.650429456231074e-16)
    sum e = 1.2368419901070035e-09
    sum de = -1.3816633789512957e-12
Info: cfl dt = 0.0015617472219235052 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0319e+04 | 11520 |      1 | 3.800e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.797193935890656 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.3171804610830886, dt = 0.0015617472219235052 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.9%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 304.67 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.311458333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.9474630354649335e-27,2.235647765283836e-27,-3.1286279170020922e-19)
    sum a = (3.205767378966427e-25,1.9409291993026689e-25,5.625627571798894e-16)
    sum e = 1.2368398442141477e-09
    sum de = -1.3662606822764375e-12
Info: cfl dt = 0.0015617323547345988 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0188e+04 | 11520 |      1 | 3.816e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.732951020984915 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.318742208305012, dt = 0.0015617323547345988 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (2.3%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.5%)
   LB compute        : 266.68 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.311024305555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2346076065841072e-27,2.540414264304384e-27,5.637729540740476e-19)
    sum a = (-3.857144227899781e-25,9.692198764073257e-26,5.599191169574066e-16)
    sum e = 1.2368377225081944e-09
    sum de = -1.350719117062122e-12
Info: cfl dt = 0.0015617184460932532 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6689e+04 | 11520 |      1 | 4.316e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.025136952024338 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.320303940659747, dt = 0.0015617184460932532 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (2.2%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 291.98 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.59 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.39 us    (63.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.311024305555557
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.369767467554839e-27,2.591728760157673e-27,1.4361446381491704e-18)
    sum a = (1.7333741987609448e-25,1.2747976992136618e-25,5.5711460694414e-16)
    sum e = 1.2368356252011152e-09
    sum de = -1.3350427106626403e-12
Info: cfl dt = 0.0015617054177702214 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5765e+04 | 11520 |      1 | 4.471e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.574312727249959 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.3218656591058404, dt = 0.0015617054177702214 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.9%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 307.00 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.311024305555557
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.6579521973737418e-27,2.8150161610327956e-27,2.304003610592149e-18)
    sum a = (1.3184306230694534e-25,5.778358952646923e-26,5.541518335344328e-16)
    sum e = 1.2368335524987448e-09
    sum de = -1.3192354877837663e-12
Info: cfl dt = 0.0015616931659534392 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7596e+04 | 11520 |      1 | 4.175e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.467538126446795 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.3234273645236105, dt = 0.0015616931659534392 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (1.8%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 323.81 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 us    (63.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.311024305555557
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.5008882337146884e-27,2.8871338308806613e-27,3.1671052523526036e-18)
    sum a = (1.38897245248723e-25,-1.2732097235987426e-25,5.510334364297636e-16)
    sum e = 1.2368315046008077e-09
    sum de = -1.3033014659831751e-12
Info: cfl dt = 0.001561681565161119 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9843e+04 | 11520 |      1 | 3.860e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.5640962562672 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 3.3249890576895638, dt = 0.001561681565161119 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.9%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 288.93 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.31076388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2810680285053285e-27,2.5182242120435023e-27,4.025209022007514e-18)
    sum a = (2.5248534901564404e-25,2.345280492235255e-26,5.477620800991709e-16)
    sum e = 1.2368294817009533e-09
    sum de = -1.2872446550456528e-12
Info: cfl dt = 0.0015616704727601535 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9993e+04 | 11520 |      1 | 3.841e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.6372750936381 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 3.3265507392547247, dt = 0.0015616704727601535 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (2.3%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 1.04 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.5%)
   LB compute        : 254.93 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.310503472222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7845656091680993e-27,2.661766112606081e-27,4.8780784801453155e-18)
    sum a = (5.34724784356598e-26,-9.713834065027616e-26,5.443404577803636e-16)
    sum e = 1.2368274839867881e-09
    sum de = -1.2710690622056423e-12
Info: cfl dt = 0.001561659733949327 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0451e+04 | 11520 |      1 | 3.783e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.86097679158704 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.328112409727485, dt = 0.001561659733949327 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (2.0%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.5%)
   LB compute        : 274.65 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.310329861111112
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.85807015728227e-27,2.4363983943315008e-27,5.72548133141466e-18)
    sum a = (-2.1407506199119093e-25,2.5736438675650544e-25,5.407712878987905e-16)
    sum e = 1.2368255116398734e-09
    sum de = -1.254778683941941e-12
Info: cfl dt = 0.0015616491870281389 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0039e+04 | 11520 |      1 | 3.835e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.659368930498768 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.329674069461434, dt = 0.0015616491870281389 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (1.2%)
   patch tree reduce : 1.77 us    (0.4%)
   gen split merge   : 1.03 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.2%)
   LB compute        : 477.17 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.309809027777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4038067550733306e-27,3.0923918142938173e-27,6.567189459016077e-18)
    sum a = (5.068970719431859e-26,3.989494020853277e-26,5.3705731487072e-16)
    sum e = 1.2368235648357597e-09
    sum de = -1.2383775094354202e-12
Info: cfl dt = 0.001561638668831854 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0217e+04 | 11520 |      1 | 3.812e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.74631056806674 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.3312357186484625, dt = 0.001561638668831854 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (2.2%)
   patch tree reduce : 2.30 us    (0.8%)
   gen split merge   : 1.06 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.5%)
   LB compute        : 261.60 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.309548611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0823977168571215e-27,2.988375944320934e-27,7.40297896788382e-18)
    sum a = (1.0454565747061176e-25,6.008234025286995e-26,5.332013053244412e-16)
    sum e = 1.2368216437439761e-09
    sum de = -1.221869520127219e-12
Info: cfl dt = 0.0015616280201021383 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0258e+04 | 11520 |      1 | 3.807e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.766337878780984 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.332797357317294, dt = 0.0015616280201021383 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (2.0%)
   patch tree reduce : 1.96 us    (0.7%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.5%)
   LB compute        : 262.23 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.309548611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.88788804000783e-27,3.1076474752231735e-27,8.232630219782202e-18)
    sum a = (7.321677087391249e-27,-2.822595450758153e-25,5.29206052248039e-16)
    sum e = 1.2368197485280325e-09
    sum de = -1.2052586885924226e-12
Info: cfl dt = 0.0015616170906715325 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0346e+04 | 11520 |      1 | 3.796e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.809116738864383 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.3343589853373965, dt = 0.0015616170906715325 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (1.9%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 305.35 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.309548611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9596589902891194e-27,2.4121280246711614e-27,9.055927885908506e-18)
    sum a = (3.899249852064804e-25,-2.187509220660386e-25,5.250743682471694e-16)
    sum e = 1.236817879345414e-09
    sum de = -1.1885489772719786e-12
Info: cfl dt = 0.0015616057442853347 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7859e+04 | 11520 |      1 | 4.135e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.59553497433873 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.335920602428068, dt = 0.0015616057442853347 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.8%)
   patch tree reduce : 1.80 us    (0.6%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 303.39 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.309548611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0526406041255779e-27,2.1194967104807832e-27,9.872660981312528e-18)
    sum a = (-1.261497536639796e-25,-1.448192154458458e-25,5.208090876523699e-16)
    sum e = 1.236816036347569e-09
    sum de = -1.171744338620696e-12
Info: cfl dt = 0.001561593862917359 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0160e+04 | 11520 |      1 | 3.820e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.718017760741132 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.3374822081723536, dt = 0.001561593862917359 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.6%)
   patch tree reduce : 2.16 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 321.18 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.309375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6167533389451813e-27,1.943016451093458e-27,1.0682622912996287e-17)
    sum a = (3.1530608040533342e-25,-2.710140426534803e-25,5.164130677470692e-16)
    sum e = 1.2368142196798916e-09
    sum de = -1.1548487133574924e-12
Info: cfl dt = 0.0015615813504502817 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0403e+04 | 11520 |      1 | 3.789e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.836438967089563 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.339043802035271, dt = 0.0015615813504502817 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.80 us    (2.0%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 323.30 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.309375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.134041031879466e-28,1.4205100642630082e-27,1.1485611529926939e-17)
    sum a = (-1.3744657058216785e-25,2.849168038340559e-26,5.118891817564403e-16)
    sum e = 1.2368124294817119e-09
    sum de = -1.13786603009126e-12
Info: cfl dt = 0.0015615681356120998 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0159e+04 | 11520 |      1 | 3.820e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.717474132399618 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.340605383385721, dt = 0.0015615681356120998 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (2.1%)
   patch tree reduce : 2.48 us    (0.9%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 268.67 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (60.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.309375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3594874205455834e-27,1.7096741827876236e-27,1.2281429157078396e-17)
    sum a = (3.347993478773849e-25,-3.9952079593104546e-25,5.072403224789569e-16)
    sum e = 1.236810665886282e-09
    sum de = -1.120800206649357e-12
Info: cfl dt = 0.0015615541740854509 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7472e+04 | 11520 |      1 | 4.193e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.406270514556994 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.342166951521333, dt = 0.0015615541740854509 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.9%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 291.20 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.309114583333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.01356493269297e-28,7.572355334025896e-28,1.3069882644696708e-17)
    sum a = (3.907168926965406e-25,-1.5578595533665347e-25,5.024694004542177e-16)
    sum e = 1.2368089290207503e-09
    sum de = -1.10365514397013e-12
Info: cfl dt = 0.00156153944973128 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8914e+04 | 11520 |      1 | 3.984e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.109672057754409 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.3437285056954185, dt = 0.00156153944973128 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (2.1%)
   patch tree reduce : 1.92 us    (0.7%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 267.88 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (62.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.308680555555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9000232248379998e-28,6.819973874555375e-28,1.3850783409154034e-17)
    sum a = (5.460975328598664e-25,7.698769287999607e-26,4.975793398140159e-16)
    sum e = 1.2368072190061644e-09
    sum de = -1.086434730742077e-12
Info: cfl dt = 0.0015615239748987906 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0408e+04 | 11520 |      1 | 3.788e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.83868641563192 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.3452900451451497, dt = 0.0015615239748987906 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.7%)
   patch tree reduce : 2.24 us    (0.7%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 313.31 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.308680555555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.156656474098461e-27,1.016581769201645e-27,1.4623947466398752e-17)
    sum a = (6.579627871004699e-26,-2.687007297052834e-26,4.925730818581664e-16)
    sum e = 1.2368055359574546e-09
    sum de = -1.069142838656439e-12
Info: cfl dt = 0.0015615077898217511 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7268e+04 | 11520 |      1 | 4.225e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.30634375355255 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.3468515691200484, dt = 0.0015615077898217511 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (1.9%)
   patch tree reduce : 2.33 us    (0.7%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 319.49 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.308680555555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.858684926023885e-28,9.104855818293042e-28,1.5389195474844674e-17)
    sum a = (-3.870083802124407e-26,9.372107260210037e-26,4.874535805322954e-16)
    sum e = 1.2368038799834279e-09
    sum de = -1.0517833229837175e-12
Info: cfl dt = 0.0015614909611257658 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9323e+04 | 11520 |      1 | 3.929e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.308681486519207 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.3484130769098703, dt = 0.0015614909611257658 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.8%)
   patch tree reduce : 2.43 us    (0.7%)
   gen split merge   : 941.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.64 us    (0.5%)
   LB compute        : 305.00 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.308159722222221
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.239504550112671e-28,1.117823882641918e-27,1.614635276423614e-17)
    sum a = (1.727714001836587e-25,5.744311091209132e-26,4.822238023124523e-16)
    sum e = 1.2368022511867792e-09
    sum de = -1.0343600208460495e-12
Info: cfl dt = 0.0015614735795225858 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0280e+04 | 11520 |      1 | 3.804e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.775777992828647 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.349974567870996, dt = 0.0015614735795225858 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.2%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.72 us    (0.6%)
   LB compute        : 270.19 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.307638888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1774596480930377e-27,1.180233404625648e-27,1.689524936520241e-17)
    sum a = (2.7342547723901833e-25,6.833981345045056e-26,4.768867250155559e-16)
    sum e = 1.2368006496640912e-09
    sum de = -1.0168767505559903e-12
Info: cfl dt = 0.0015614557567267574 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0422e+04 | 11520 |      1 | 3.787e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.844680685133584 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.3515360414505184, dt = 0.0015614557567267574 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.9%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.5%)
   LB compute        : 274.36 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.307465277777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6788161413623346e-27,1.2988114963947348e-27,1.763572003479422e-17)
    sum a = (2.646735819394999e-25,3.834063106352798e-25,4.714453373676873e-16)
    sum e = 1.2367990755058582e-09
    sum de = -9.993373131099812e-13
Info: cfl dt = 0.0015614376217615578 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0402e+04 | 11520 |      1 | 3.789e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.834796998023615 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.353097497207245, dt = 0.0015614376217615578 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.9%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 266.20 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.307204861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0532732732647144e-27,2.1649169737022757e-27,1.8367604278101084e-17)
    sum a = (-4.4266033784359903e-26,-7.144330029087483e-26,4.659026361676908e-16)
    sum e = 1.236797528796496e-09
    sum de = -9.817454860433006e-13
Info: cfl dt = 0.0015614193167322525 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7937e+04 | 11520 |      1 | 4.124e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.631851718653687 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.354658934829007, dt = 0.0015614193167322525 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (2.2%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.5%)
   LB compute        : 261.86 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.38 us    (59.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.306684027777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.761335398207489e-27,1.673962067430267e-27,1.909074636285927e-17)
    sum a = (-4.00202793318501e-25,1.487437342199227e-25,4.602616269249385e-16)
    sum e = 1.236796009614385e-09
    sum de = -9.6410502806625e-13
Info: cfl dt = 0.0015614009922242274 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7339e+04 | 11520 |      1 | 4.214e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.33983839359663 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.356220354145739, dt = 0.0015614009922242274 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (2.0%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 291.02 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3062499999999995
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.584776468428626e-28,2.1136024778489866e-27,1.9804995333371207e-17)
    sum a = (-2.0533183468083691e-25,-3.352188785529422e-25,4.545253227070334e-16)
    sum e = 1.236794518031893e-09
    sum de = -9.464196763001659e-13
Info: cfl dt = 0.0015613828024739187 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8772e+04 | 11520 |      1 | 4.004e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.038888969508703 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.357781755137963, dt = 0.0015613828024739187 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.9%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 294.40 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.305555555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.000268049175039e-28,1.1934087481555466e-27,2.051020501992863e-17)
    sum a = (1.8374923510059681e-25,-3.032183961557847e-25,4.486967417714436e-16)
    sum e = 1.2367930541154251e-09
    sum de = -9.286931437366992e-13
Info: cfl dt = 0.001561364900468885 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0483e+04 | 11520 |      1 | 3.779e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.873711126202734 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.359343137940437, dt = 0.001561364900468885 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.7%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 319.02 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.305555555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2856361528648363e-27,7.343520420085554e-28,2.120623404055588e-17)
    sum a = (9.984622046523688e-26,6.312723148654281e-27,4.4277890571557313e-16)
    sum e = 1.2367916179254683e-09
    sum de = -9.109291197290041e-13
Info: cfl dt = 0.0015613474331331576 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9896e+04 | 11520 |      1 | 3.853e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.587262398010115 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.360904502840906, dt = 0.0015613474331331576 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.6%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 341.01 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.305381944444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3945060967697874e-27,1.0221292822668655e-27,2.1892945797670306e-17)
    sum a = (5.911221890558952e-26,-2.856123232846079e-25,4.367748422301918e-16)
    sum e = 1.2367902095166529e-09
    sum de = -8.931312740488493e-13
Info: cfl dt = 0.001561330536752329 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0455e+04 | 11520 |      1 | 3.783e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.859771175811808 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.362465850274039, dt = 0.001561330536752329 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.8%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 317.70 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.305208333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4361124447589406e-27,3.1828856211702257e-28,2.2570208481991877e-17)
    sum a = (-2.481250037463808e-25,2.4173288181698054e-25,4.306875808959077e-16)
    sum e = 1.2367888289377917e-09
    sum de = -8.753032496134168e-13
Info: cfl dt = 0.0015613143327819678 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0360e+04 | 11520 |      1 | 3.795e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.812957918282931 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.3640271808107913, dt = 0.0015613143327819678 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (2.0%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 271.38 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.304166666666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.293532032504553e-28,1.1448680088348677e-27,2.323789506146271e-17)
    sum a = (2.8570316381105087e-25,3.0205411185122156e-25,4.245201519747298e-16)
    sum e = 1.2367874762319576e-09
    sum de = -8.574486641342293e-13
Info: cfl dt = 0.0015612989241702052 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0458e+04 | 11520 |      1 | 3.782e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.860944957711556 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.3655884951435735, dt = 0.0015612989241702052 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (2.1%)
   patch tree reduce : 1.71 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 267.93 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.30390625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6736153478636907e-27,1.6670276760987415e-27,2.3895883270459254e-17)
    sum a = (3.509280486753802e-25,2.143455032531204e-25,4.1827558704364956e-16)
    sum e = 1.2367861514365441e-09
    sum de = -8.39571115714417e-13
Info: cfl dt = 0.0015612843923087506 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8748e+04 | 11520 |      1 | 4.007e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.026498795827035 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.3671497940677435, dt = 0.0015612843923087506 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.8%)
   patch tree reduce : 1.53 us    (0.5%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 300.99 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.303732638888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2800278698055997e-27,1.8923953943733217e-27,2.454405559996207e-17)
    sum a = (5.871973235622518e-25,2.358521712482803e-25,4.119569165906485e-16)
    sum e = 1.2367848545833125e-09
    sum de = -8.21674171144029e-13
Info: cfl dt = 0.0015612707947046986 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0409e+04 | 11520 |      1 | 3.788e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.836673409630233 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.3687110784600525, dt = 0.0015612707947046986 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.44 us    (1.9%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 323.89 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.303732638888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.360752758823856e-27,2.3049916785990917e-27,2.518229928172811e-17)
    sum a = (2.955302364865223e-25,1.8707947653756196e-25,4.055671719693197e-16)
    sum e = 1.236783585698484e-09
    sum de = -8.037613772150082e-13
Info: cfl dt = 0.0015612581634421021 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0431e+04 | 11520 |      1 | 3.786e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.847399718389259 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.370272349254757, dt = 0.0015612581634421021 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.9%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 296.43 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (62.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.303559027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.629807142487047e-27,2.5629510361318418e-27,2.5810506278920256e-17)
    sum a = (-4.945819396579632e-25,1.344599282356798e-25,3.9910938077170964e-16)
    sum e = 1.2367823448027796e-09
    sum de = -7.858362533990148e-13
Info: cfl dt = 0.0015612465044776696 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8344e+04 | 11520 |      1 | 4.064e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.828729873715845 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.371833607418199, dt = 0.0015612465044776696 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.2%)
   patch tree reduce : 1.86 us    (0.7%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 261.99 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 us    (62.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.303125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2148445912892594e-27,2.7564205542814046e-27,2.6428573264977547e-17)
    sum a = (1.0876662147411135e-25,-9.018800021868811e-26,3.925865689978728e-16)
    sum e = 1.2367811319114936e-09
    sum de = -7.679022935056702e-13
Info: cfl dt = 0.0015612357977871087 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0428e+04 | 11520 |      1 | 3.786e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.845417850873531 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.373394853922677, dt = 0.0015612357977871087 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.7%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 304.49 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (62.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.302864583333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8964952591782206e-27,2.3875109354442456e-27,2.7036401611648837e-17)
    sum a = (-1.4639020180200294e-25,1.1394522492049464e-25,3.8600175680157247e-16)
    sum e = 1.236779947034554e-09
    sum de = -7.499629687464346e-13
Info: cfl dt = 0.0015612259983514996 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0339e+04 | 11520 |      1 | 3.797e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.801983780500949 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.374956089720464, dt = 0.0015612259983514996 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (2.1%)
   patch tree reduce : 2.37 us    (0.8%)
   gen split merge   : 1.46 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 289.47 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.301996527777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.452694213960586e-27,2.748099284683574e-27,2.763389736750937e-17)
    sum a = (-2.762030476868609e-25,6.536981364315817e-25,3.793579612950039e-16)
    sum e = 1.2367787901765707e-09
    sum de = -7.320217215818972e-13
Info: cfl dt = 0.0015612170379475777 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0373e+04 | 11520 |      1 | 3.793e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.818645489659772 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.3765173157188153, dt = 0.0015612170379475777 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.7%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.4%)
   LB compute        : 315.24 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.301996527777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.91770592273339e-27,4.189065803374582e-27,2.8220971247031125e-17)
    sum a = (4.192082263603796e-26,3.4496377869113506e-25,3.7265819562435634e-16)
    sum e = 1.236777661336899e-09
    sum de = -7.140819714961974e-13
Info: cfl dt = 0.001561208827678061 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0387e+04 | 11520 |      1 | 3.791e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.825262573489486 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.378078532756763, dt = 0.001561208827678061 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.8%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 320.63 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.301822916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2203921043544798e-27,4.4588136261709266e-27,2.8797538617496926e-17)
    sum a = (-4.121299464087249e-25,-4.361884704138862e-25,3.6590546466838254e-16)
    sum e = 1.2367765605096838e-09
    sum de = -6.96147110485849e-13
Info: cfl dt = 0.0015612012611573847 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7633e+04 | 11520 |      1 | 4.169e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.48147797000527 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.379639741584441, dt = 0.0015612012611573847 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.7%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 313.83 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.301822916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2114381656175129e-27,3.180805303770768e-27,2.936351947890772e-17)
    sum a = (-1.7316596705042252e-25,-1.5413071612581832e-26,3.591027656401375e-16)
    sum e = 1.2367754876839078e-09
    sum de = -6.782205054838544e-13
Info: cfl dt = 0.0015611942182466576 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7241e+04 | 11520 |      1 | 4.229e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.290003157911594 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.3812009428455982, dt = 0.0015611942182466576 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.8%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 316.30 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.301822916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1271853109394775e-27,3.4727431788279936e-27,2.9918838449259797e-17)
    sum a = (-4.0763646082589636e-25,-1.9734514946475238e-25,3.52253090441232e-16)
    sum e = 1.2367744428434333e-09
    sum de = -6.60305495909024e-13
Info: cfl dt = 0.0015611875692139786 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0399e+04 | 11520 |      1 | 3.790e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.830853177200014 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.3827621370638448, dt = 0.0015611875692139786 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (1.9%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 309.20 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.301562499999999
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.207155990830565e-28,3.0199274248793754e-27,3.046342475857533e-17)
    sum a = (-6.206939008891859e-26,6.507163481590257e-26,3.453594186001591e-16)
    sum e = 1.2367734259670404e-09
    sum de = -6.424053963894779e-13
Info: cfl dt = 0.0015611811791836083 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0409e+04 | 11520 |      1 | 3.788e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.835807708729776 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.384323324633059, dt = 0.0015611811791836083 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.7%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 306.24 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.301041666666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.6009686484672e-28,3.3728879436540255e-27,3.099721222559068e-17)
    sum a = (-1.4343649781433961e-25,4.0523196063168987e-25,3.3842472261650206e-16)
    sum e = 1.2367724370284657e-09
    sum de = -6.245234927790014e-13
Info: cfl dt = 0.0015611749127298709 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0365e+04 | 11520 |      1 | 3.794e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.814238693964137 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.3858845058122427, dt = 0.0015611749127298709 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (2.1%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 270.56 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.301041666666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7162618545525728e-28,4.208482099102854e-27,3.152013925396052e-17)
    sum a = (3.8195320893175864e-25,-2.5770417193175017e-25,3.3145196338122925e-16)
    sum e = 1.2367714759964316e-09
    sum de = -6.066630449343556e-13
Info: cfl dt = 0.0015611686384649638 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0473e+04 | 11520 |      1 | 3.780e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.8667948508361 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 3.3874456807249724, dt = 0.0015611686384649638 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (2.1%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 1.07 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 280.79 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.301041666666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1923685894558178e-27,3.293142443341482e-27,3.203214881590307e-17)
    sum a = (-4.0073379433471255e-25,-3.4744698422695435e-25,3.244440889866527e-16)
    sum e = 1.2367705428346797e-09
    sum de = -5.88827283611286e-13
Info: cfl dt = 0.001561162233473318 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6355e+04 | 11520 |      1 | 4.371e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.857696423430815 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.3890068493634375, dt = 0.001561162233473318 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (2.2%)
   patch tree reduce : 1.96 us    (0.7%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.5%)
   LB compute        : 260.64 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.301041666666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.155148055844124e-29,2.6912372757650646e-27,3.253318843764792e-17)
    sum a = (-9.143723081706243e-26,-6.655559456084904e-26,3.174040359140066e-16)
    sum e = 1.2367696375020015e-09
    sum de = -5.710194127774092e-13
Info: cfl dt = 0.0015611555874489164 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0482e+04 | 11520 |      1 | 3.779e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.87095244816467 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.390568011596911, dt = 0.0015611555874489164 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.6%)
   patch tree reduce : 2.27 us    (0.7%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 314.81 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.301041666666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.136936328400109e-29,2.8236841501972026e-27,3.302321018933783e-17)
    sum a = (1.518347391559502e-25,-1.3089877156737485e-25,3.103347274608379e-16)
    sum e = 1.236768759952264e-09
    sum de = -5.53242606198863e-13
Info: cfl dt = 0.0015611486064016334 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0387e+04 | 11520 |      1 | 3.791e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.824478792482212 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.39212916718436, dt = 0.0015611486064016334 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.7%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 321.50 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.301041666666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.833270758073306e-28,2.576819818794893e-27,3.350217067138428e-17)
    sum a = (-3.6267057359640226e-25,-2.524513704981196e-25,3.0323907262727693e-16)
    sum e = 1.236767910134439e-09
    sum de = -5.355000085027585e-13
Info: cfl dt = 0.001561141215814448 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6654e+04 | 11520 |      1 | 4.322e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.003591392412964 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.3936903157907614, dt = 0.001561141215814448 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.6%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 329.44 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.301041666666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.027433715356021e-28,2.0609011037293925e-27,3.397003100011241e-17)
    sum a = (-4.8557312515961175e-25,8.310868010833367e-28,2.961199626212704e-16)
    sum e = 1.2367670879926367e-09
    sum de = -5.177947346431516e-13
Info: cfl dt = 0.0015611333631486853 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0294e+04 | 11520 |      1 | 3.803e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.779175091561898 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.3952514570065757, dt = 0.0015611333631486853 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.8%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 316.33 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.30078125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3431916009164983e-27,2.284188504604515e-27,3.442675678524816e-17)
    sum a = (3.7996650581527657e-26,1.0036213918030238e-25,2.8898027488214814e-16)
    sum e = 1.2367662934661313e-09
    sum de = -5.00129868999178e-13
Info: cfl dt = 0.0015611250196179351 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9455e+04 | 11520 |      1 | 3.911e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.369583590732116 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.3968125903697244, dt = 0.0015611250196179351 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.6%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 325.71 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.30078125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.7269314907249e-28,2.5123299794117054e-27,3.48723181201623e-17)
    sum a = (1.9692735238702796e-25,-7.400278413134091e-26,2.8182286686082934e-16)
    sum e = 1.2367655264893967e-09
    sum de = -4.825084649025185e-13
Info: cfl dt = 0.0015611161811737702 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7769e+04 | 11520 |      1 | 4.148e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.547386310556476 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.3983737153893423, dt = 0.0015611161811737702 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (2.0%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 297.08 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (63.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.300520833333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.28892103854855e-28,2.265465648009396e-27,3.5306689553512375e-17)
    sum a = (1.3749667155953812e-25,2.023507398474141e-25,2.7465057906783687e-16)
    sum e = 1.2367647869921432e-09
    sum de = -4.649335437275584e-13
Info: cfl dt = 0.0015611068686702241 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0338e+04 | 11520 |      1 | 3.797e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.800570459077393 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.399934831570516, dt = 6.516842948434132e-05 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.8%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 313.99 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.300260416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.6460421921221165e-28,2.5033152706807223e-27,3.5318989713081937e-17)
    sum a = (-7.548466355888791e-26,-3.1767694880158205e-25,2.74378855002703e-16)
    sum e = 1.2367647703900028e-09
    sum de = -4.642247634978257e-13
Info: cfl dt = 0.0015611062843459852 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0979e+04 | 11520 |      1 | 3.719e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6308896565373879 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 1870                                                    [SPH][rank=0]
Info: time since start : 859.1707805750001 (s)                                        [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[-2.93577244e-24 -9.77463734e-16  1.14899664e-10 ... -2.91537852e-15
  6.73022188e-09  2.17573342e-09]
(11520, 3)
[[-2.93577244e-24 -9.77463734e-16  1.14899664e-10 -4.29786209e-13
  -2.29625711e-11]
 [ 2.73816629e-06 -1.16372134e-17 -5.44050152e-16  5.89295856e-09
  -1.66305790e-10]
 [ 2.54852000e-05  2.45391586e-05  7.08159208e-06 -4.86964716e-11
   4.35527999e-09]
 ...
 [ 3.44930975e-05  4.02671866e-05  3.18410346e-05 -8.86722779e-11
   2.41254512e-07]
 [ 1.10087071e-05  5.11454513e-06 -2.03602683e-14 -3.72936225e-12
  -1.58227455e-11]
 [-2.80381248e-25 -1.77302541e-22 -2.91537852e-15  6.73022188e-09
   2.17573342e-09]]
compute original rho
Info: Dumping state to _to_trash/dusty_settle/dump/0000034.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.76 us   (72.2%)
Info: dump to _to_trash/dusty_settle/dump/0000034.sham                      [Shamrock Dump][rank=0]
              - took 1.06 ms, bandwidth = 2.78 GB/s
Info: evolve_until (target_time = 3.50s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 3.4000000000000004, dt = 0.0015611062843459852 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.44 us    (1.1%)
   patch tree reduce : 1.16 us    (0.4%)
   gen split merge   : 481.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 300.91 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.300260416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.769413587829254e-28,2.0102800470092558e-27,3.574731541405639e-17)
    sum a = (-7.339602488983241e-26,-2.7573324267415e-25,2.6716589252780795e-16)
    sum e = 1.2367640457302356e-09
    sum de = -4.466775308887348e-13
Info: cfl dt = 0.0015610967136077015 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4562e+04 | 11520 |      1 | 4.690e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.982366583191201 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.4015611062843463, dt = 0.0015610967136077015 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.6%)
   patch tree reduce : 2.16 us    (0.6%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 333.96 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.300260416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.0800135494875825e-28,1.5796543453215195e-27,3.6158757110307964e-17)
    sum a = (7.714324861354052e-25,-2.2403042090629554e-25,2.5997206708148566e-16)
    sum e = 1.2367633621198506e-09
    sum de = -4.2920680019119486e-13
Info: cfl dt = 0.0015610865970592624 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9983e+04 | 11520 |      1 | 3.842e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.62686590946273 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.4031222029979538, dt = 0.0015610865970592624 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.7%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.4%)
   LB compute        : 322.26 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.3
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1660179023960205e-27,1.2904902267969042e-27,3.6558980891218426e-17)
    sum a = (-1.8966253730855522e-25,-1.072764207769665e-25,2.5277176467937714e-16)
    sum e = 1.2367627057275247e-09
    sum de = -4.1179150235335264e-13
Info: cfl dt = 0.0015610762127084054 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0406e+04 | 11520 |      1 | 3.789e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.833129201055518 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.404683289595013, dt = 0.0015610762127084054 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (1.8%)
   patch tree reduce : 1.96 us    (0.5%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 338.04 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.299479166666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0366915040630692e-28,1.2155988004164283e-27,3.694795673250828e-17)
    sum a = (3.460663469128476e-25,5.48638640563304e-26,2.4556785220173145e-16)
    sum e = 1.2367620764829066e-09
    sum de = -3.944345631106003e-13
Info: cfl dt = 0.0015610656664785316 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0074e+04 | 11520 |      1 | 3.831e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.670991396785988 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.4062443658077215, dt = 0.0015610656664785316 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (2.0%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 288.08 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.29921875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0623487519897137e-27,1.4160027098975165e-27,3.7325681347186236e-17)
    sum a = (-2.2121887194092853e-25,4.268870246013444e-25,2.3836306123147773e-16)
    sum e = 1.23676147429231e-09
    sum de = -3.771388340871815e-13
Info: cfl dt = 0.0015610550791047503 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0368e+04 | 11520 |      1 | 3.793e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.814394874119488 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.4078054314742, dt = 0.0015610550791047503 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.9%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 293.60 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (57.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.299045138888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9089771635749667e-28,2.38057654411272e-27,3.769215563870162e-17)
    sum a = (-3.0693696350731523e-26,-2.859396265554559e-27,2.311600991635007e-16)
    sum e = 1.2367608990576066e-09
    sum de = -3.59907133500473e-13
Info: cfl dt = 0.0015610445812933474 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0480e+04 | 11520 |      1 | 3.780e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.869109620063922 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.4093664865533047, dt = 0.0015610445812933474 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.8%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 303.67 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.298611111111112
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.8485871889966782e-28,2.008199729609798e-27,3.804738474865729e-17)
    sum a = (-2.8739376841767683e-25,1.0093145270862064e-25,2.239616488444737e-16)
    sum e = 1.2367603506762463e-09
    sum de = -3.427422423512157e-13
Info: cfl dt = 0.001561034309372547 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0324e+04 | 11520 |      1 | 3.799e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.792953273434053 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.410927531134598, dt = 0.001561034309372547 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.7%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 316.61 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.298611111111112
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.506782466346485e-28,2.2987507264007186e-27,3.839137801548925e-17)
    sum a = (9.0160262653362e-26,-9.388680455492383e-26,2.1677036730029247e-16)
    sum e = 1.2367598290413287e-09
    sum de = -3.256469079748253e-13
Info: cfl dt = 0.0015610244007212813 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0238e+04 | 11520 |      1 | 3.810e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.750665576452674 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.4124885654439705, dt = 0.0015610244007212813 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.8%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 289.72 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.298611111111112
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7162618545525728e-28,1.930534546696712e-27,3.8724148929603977e-17)
    sum a = (9.9435357778844e-26,-3.067285850478029e-25,2.0958888408704388e-16)
    sum e = 1.2367593340416614e-09
    sum de = -3.0862384150075904e-13
Info: cfl dt = 0.0015610149891326015 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6901e+04 | 11520 |      1 | 4.282e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.123010577338505 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.4140495898446916, dt = 0.0015610149891326015 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (2.3%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 261.03 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.298350694444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2799670998115833e-28,1.3133737181909385e-27,3.904571508401853e-17)
    sum a = (3.3720315463245825e-25,-1.1727546635745976e-25,2.0241980198508828e-16)
    sum e = 1.2367588655618308e-09
    sum de = -2.916757166991029e-13
Info: cfl dt = 0.0015610062002514176 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0419e+04 | 11520 |      1 | 3.787e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.838819833795473 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.4156106048338244, dt = 0.0015610062002514176 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (1.8%)
   patch tree reduce : 2.23 us    (0.7%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 317.57 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.298003472222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0231694409665943e-27,1.2787017615333107e-27,3.9356098127581855e-17)
    sum a = (4.1310873574516975e-25,-2.664886588705268e-26,1.9526569660301153e-16)
    sum e = 1.236758423482266e-09
    sum de = -2.7480517205346226e-13
Info: cfl dt = 0.0015609981472371021 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0283e+04 | 11520 |      1 | 3.804e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.772354367577119 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.417171611034076, dt = 0.0015609981472371021 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.5%)
   patch tree reduce : 2.17 us    (0.6%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 348.48 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.298003472222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7457330177115565e-27,1.3210015486556166e-27,3.965532371682797e-17)
    sum a = (-4.829796628016211e-25,-3.5137982427062907e-25,1.8812911363307065e-16)
    sum e = 1.2367580076793117e-09
    sum de = -2.580148108103272e-13
Info: cfl dt = 0.0015609909267848025 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0233e+04 | 11520 |      1 | 3.810e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.748019115827827 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.4187326091813133, dt = 0.0015609909267848025 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (2.0%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.57 us    (0.5%)
   LB compute        : 294.98 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.297743055555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8951083809119157e-28,5.131449585328904e-28,3.994342145982209e-17)
    sum a = (8.213370468712118e-26,3.4342815773076873e-25,1.8101256862352377e-16)
    sum e = 1.2367576180252925e-09
    sum de = -2.4130719890605693e-13
Info: cfl dt = 0.0015609846156338957 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9867e+04 | 11520 |      1 | 3.857e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.569551275759878 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.420293600108098, dt = 0.0015609846156338957 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.8%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 313.14 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.297135416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.71306270806185e-28,1.6046181541150114e-27,4.0220424863654933e-17)
    sum a = (2.159747384964623e-25,-3.8889072073938336e-25,1.7391854949958662e-16)
    sum e = 1.2367572543885806e-09
    sum de = -2.2468486596643037e-13
Info: cfl dt = 0.0015609792676729993 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0330e+04 | 11520 |      1 | 3.798e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.795041117242562 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.421854584723732, dt = 0.0015609792676729993 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (2.0%)
   patch tree reduce : 1.92 us    (0.7%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.5%)
   LB compute        : 271.42 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.296961805555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2984647768281586e-27,4.236913103562109e-28,4.048637128626453e-17)
    sum a = (3.757115632942525e-25,-1.865815872399584e-25,1.6684951362518103e-16)
    sum e = 1.2367569166336633e-09
    sum de = -2.0815030766452583e-13
Info: cfl dt = 0.0015609749117337396 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9584e+04 | 11520 |      1 | 3.894e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.431143761819252 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.423415563991405, dt = 0.0015609749117337396 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.7%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 317.67 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.296788194444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.005079253510612e-27,2.9124443592407297e-28,4.074130188177391e-17)
    sum a = (-9.006838196821928e-26,1.0323193703285423e-25,1.5980788525297622e-16)
    sum e = 1.2367566046212045e-09
    sum de = -1.9170598067627462e-13
Info: cfl dt = 0.0015609715501461933 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0349e+04 | 11520 |      1 | 3.796e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.804168954915495 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.4249765389031386, dt = 0.0015609715501461933 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.7%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 325.03 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2965277777777775
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.501642442841857e-27,6.587671764949269e-28,4.098526154164314e-17)
    sum a = (2.9119312142821965e-25,1.4802117064317773e-25,1.5279605949752877e-16)
    sum e = 1.2367563182081119e-09
    sum de = -1.7535430851794422e-13
Info: cfl dt = 0.00156096915810156 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0330e+04 | 11520 |      1 | 3.798e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.795008196380929 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.4265375104532847, dt = 0.00156096915810156 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (1.9%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 308.44 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.296354166666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.28557538287082e-27,9.18806851427135e-28,4.121829884771011e-17)
    sum a = (-2.771457781883818e-25,-7.380307366099297e-26,1.4581639828781705e-16)
    sum e = 1.236756057247591e-09
    sum de = -1.5909767724826397e-13
Info: cfl dt = 0.001560967683846142 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7409e+04 | 11520 |      1 | 4.203e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.370422918467419 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.4280984796113865, dt = 0.001560967683846142 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (1.8%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 313.44 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.296354166666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3782102771407023e-27,6.4905902863079115e-28,4.144046601525991e-17)
    sum a = (-1.4492392475495184e-25,-2.5181756713041814e-25,1.3887123343559286e-16)
    sum e = 1.2367558215892075e-09
    sum de = -1.4293843874403988e-13
Info: cfl dt = 0.0015609670497029804 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0177e+04 | 11520 |      1 | 3.817e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.7204003606539 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 3.4296594472952324, dt = 0.0015609670497029804 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.7%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 325.94 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.296354166666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.262752661470802e-27,9.153396557613721e-29,4.1651818845852376e-17)
    sum a = (-1.303571956043827e-25,2.384494475215032e-26,1.31962859548833e-16)
    sum e = 1.236755611078939e-09
    sum de = -1.268789090403431e-13
Info: cfl dt = 0.0015609671538928387 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0268e+04 | 11520 |      1 | 3.806e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.76482910815851 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.4312204143449354, dt = 0.0015609671538928387 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.6%)
   patch tree reduce : 1.89 us    (0.5%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 331.11 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.296006944444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0637356302560187e-27,3.668293014377014e-28,4.185241666315507e-17)
    sum a = (-4.328429733159917e-26,-4.0597775441939547e-25,1.2509354272660055e-16)
    sum e = 1.2367554255592276e-09
    sum de = -1.1092136823448781e-13
Info: cfl dt = 0.0015609678731023095 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0342e+04 | 11520 |      1 | 3.797e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.80096942862341 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.4327813814988284, dt = 0.0015609678731023095 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (2.0%)
   patch tree reduce : 1.71 us    (0.6%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 290.17 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.296006944444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0782978520522224e-27,-6.157739502394685e-28,4.204232227553572e-17)
    sum a = (8.377403495659355e-26,-3.0297742605701416e-26,1.1826551274158924e-16)
    sum e = 1.2367552648690359e-09
    sum de = -9.506806232073064e-14
Info: cfl dt = 0.0015609690657243272 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7778e+04 | 11520 |      1 | 4.147e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.550148718494796 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.4343423493719305, dt = 0.0015609690657243272 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.9%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.52 us    (0.5%)
   LB compute        : 285.05 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.295399305555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2800886397996159e-27,-3.4186549264420945e-28,4.2221601914762164e-17)
    sum a = (6.88536518481166e-26,2.618661936089318e-25,1.1148096438180066e-16)
    sum e = 1.2367551288438827e-09
    sum de = -7.932120187181083e-14
Info: cfl dt = 0.0015609705756702969 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0333e+04 | 11520 |      1 | 3.798e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.79632180471113 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.4359033184376546, dt = 0.0015609705756702969 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (2.0%)
   patch tree reduce : 1.90 us    (0.7%)
   gen split merge   : 1.08 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 271.80 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.295399305555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.363994774911075e-27,3.058066577202766e-28,4.2390325184831774e-17)
    sum a = (1.949713339521879e-25,-1.094382172745696e-25,1.0474205986447804e-16)
    sum e = 1.2367550173159035e-09
    sum de = -6.368296097449416e-14
Info: cfl dt = 0.001560972236626537 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0408e+04 | 11520 |      1 | 3.788e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.833259959048092 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.437464289013325, dt = 0.001560972236626537 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.8%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 309.76 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (61.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.295399305555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.779018096102879e-27,-1.7613353982074888e-28,4.254856501648773e-17)
    sum a = (2.5063178621272728e-25,-5.402168222911662e-26,9.805092479942493e-17)
    sum e = 1.2367549301138882e-09
    sum de = -4.815547945344651e-14
Info: cfl dt = 0.001560973876677977 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0224e+04 | 11520 |      1 | 3.812e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.743510259081194 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.4390252612499514, dt = 0.001560973876677977 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (2.0%)
   patch tree reduce : 1.53 us    (0.5%)
   gen split merge   : 1.04 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.5%)
   LB compute        : 265.61 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.295399305555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2359944848504126e-27,-1.9138920075010508e-28,4.269639761061082e-17)
    sum a = (-6.929623937485123e-26,-2.185903909067138e-25,9.140964981762208e-17)
    sum e = 1.2367548670633278e-09
    sum de = -3.2740860991390994e-14
Info: cfl dt = 0.001560975323107157 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7174e+04 | 11520 |      1 | 4.239e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.255430521551673 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.4405862351266294, dt = 0.001560975323107157 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (2.2%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 971.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 256.89 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.295399305555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.882687246509186e-27,-6.767965939568933e-28,4.2833902389870757e-17)
    sum a = (7.446886190871106e-26,1.1065901686848468e-26,8.4820287110966e-17)
    sum e = 1.236754827986462e-09
    sum de = -1.7441174325724173e-14
Info: cfl dt = 0.0015609764072360116 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9542e+04 | 11520 |      1 | 3.899e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.410949199692595 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.4421472104497366, dt = 0.0015609764072360116 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (2.2%)
   patch tree reduce : 1.89 us    (0.7%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.5%)
   LB compute        : 257.67 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2952256944444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.096613219086749e-27,-4.916483454051612e-28,4.296116194061636e-17)
    sum a = (-5.787351124606078e-25,9.487530203923279e-26,7.828485656860629e-17)
    sum e = 1.2367548127023174e-09
    sum de = -2.2584512419119015e-15
Info: cfl dt = 0.0015609769691804875 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9355e+04 | 11520 |      1 | 3.924e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.319716157841102 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.4437081868569726, dt = 0.0015609769691804875 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (2.0%)
   patch tree reduce : 1.90 us    (0.7%)
   gen split merge   : 1.07 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 263.27 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2952256944444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.000268049175039e-28,-3.2522295344854813e-28,4.3078261972312125e-17)
    sum a = (-2.679379466588156e-26,-4.9446197468792775e-25,7.180533583258456e-17)
    sum e = 1.2367548210267647e-09
    sum de = 1.2805311557927488e-14
Info: cfl dt = 0.0015609768623649728 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8899e+04 | 11520 |      1 | 3.986e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.097319714818912 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.4452691638261532, dt = 0.0015609768623649728 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (2.2%)
   patch tree reduce : 1.75 us    (0.6%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.5%)
   LB compute        : 263.82 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.294965277777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0772576933524936e-27,-1.5033760406747384e-27,4.318529124883711e-17)
    sum a = (3.1071551334386355e-25,4.908647591846989e-26,6.538366888603937e-17)
    sum e = 1.2367548527725539e-09
    sum de = 2.7748154326277445e-14
Info: cfl dt = 0.001560975957662904 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6378e+04 | 11520 |      1 | 4.367e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.867330639822642 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.446830140688518, dt = 0.001560975957662904 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (2.1%)
   patch tree reduce : 1.85 us    (0.7%)
   gen split merge   : 1.06 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 264.45 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.29453125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8386538615539984e-27,-1.0359980649299167e-27,4.3282341547245804e-17)
    sum a = (3.9483332075071744e-25,1.7803737696081922e-25,5.902176081335813e-17)
    sum e = 1.236754907749372e-09
    sum de = 4.256815412987159e-14
Info: cfl dt = 0.0015609741470396872 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8332e+04 | 11520 |      1 | 4.066e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.82067235071547 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.4483911166461807, dt = 0.0015609741470396872 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (2.0%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 297.38 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (63.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.29453125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.50539558808018e-27,-6.587671764949269e-28,4.336950759726518e-17)
    sum a = (-3.286341539043088e-25,1.6288191798620357e-26,5.272147430418994e-17)
    sum e = 1.236754985763892e-09
    sum de = 5.726342429796906e-14
Info: cfl dt = 0.0015609713465895205 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0206e+04 | 11520 |      1 | 3.814e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.734731706924263 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.44995209079322, dt = 0.0015609713465895205 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (2.3%)
   patch tree reduce : 1.87 us    (0.7%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.5%)
   LB compute        : 266.47 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.29453125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.437846042591822e-27,-7.537683377368269e-28,4.3446887015742174e-17)
    sum a = (1.9953052289288264e-25,1.83538776323685e-25,4.6484637861889764e-17)
    sum e = 1.2367550866198247e-09
    sum de = 7.183211656852066e-14
Info: cfl dt = 0.0015609674988754422 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0264e+04 | 11520 |      1 | 3.807e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.762674235078807 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.4515130621398096, dt = 0.0015609674988754422 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.2%)
   patch tree reduce : 1.91 us    (0.7%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.5%)
   LB compute        : 264.05 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.294097222222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1344056518435632e-27,-2.9263131419037807e-28,4.3514580263154653e-17)
    sum a = (7.016478922510313e-25,-2.1844095477351937e-25,4.031303693123667e-17)
    sum e = 1.2367552101179795e-09
    sum de = 8.6272419424497e-14
Info: cfl dt = 0.0015609625745049008 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0338e+04 | 11520 |      1 | 3.797e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.79908534489558 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.453074029638685, dt = 0.0015609625745049008 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (2.1%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 271.80 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (61.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.294097222222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.629113703353895e-27,-9.90231082141848e-28,4.357269057083635e-17)
    sum a = (-6.117650052509303e-25,-3.822371722567846e-25,3.420841887441981e-17)
    sum e = 1.2367553560563182e-09
    sum de = 1.0058255991632751e-13
Info: cfl dt = 0.001560956572894107 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9944e+04 | 11520 |      1 | 3.847e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.606690149816421 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.45463499221319, dt = 0.001560956572894107 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.9%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.5%)
   LB compute        : 285.92 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.72 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.293836805555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6507318564696564e-27,-1.7134880980199625e-27,4.3621323886966994e-17)
    sum a = (1.8487503353326998e-25,4.384948489707517e-25,2.8172489019345184e-17)
    sum e = 1.2367555242300222e-09
    sum de = 1.1476080382009154e-13
Info: cfl dt = 0.0015609495222006302 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7709e+04 | 11520 |      1 | 4.157e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.516537711427569 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.456195948786084, dt = 0.0015609495222006302 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.7%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 309.94 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.293576388888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5660715122310283e-27,-3.6752274057085395e-28,4.3660588808147876e-17)
    sum a = (-1.816023475443565e-25,-9.385005228086674e-27,2.220691191606971e-17)
    sum e = 1.2367557144315549e-09
    sum de = 1.2880545473221108e-13
Info: cfl dt = 0.001560941478428207 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9944e+04 | 11520 |      1 | 3.847e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.606595766871004 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.4577568983082845, dt = 0.001560941478428207 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.8%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 318.54 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2933159722222225
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9797687251505433e-27,-7.308848463427926e-28,4.369059651562835e-17)
    sum a = (2.6078962935471247e-25,2.20843721369893e-25,1.631331236552092e-17)
    sum e = 1.2367559264507248e-09
    sum de = 1.427148575529506e-13
Info: cfl dt = 0.0015609325237340246 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9815e+04 | 11520 |      1 | 3.864e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.543554969057592 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.4593178397867126, dt = 0.0015609325237340246 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.6%)
   patch tree reduce : 1.89 us    (0.5%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 314.27 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.293055555555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7550336760150996e-27,-2.094186182120715e-28,4.371146071346907e-17)
    sum a = (3.8881617603256946e-25,-7.392407878972809e-26,1.0493270817934742e-17)
    sum e = 1.2367561600747668e-09
    sum de = 1.564873943604865e-13
Info: cfl dt = 0.0015609227639895597 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0198e+04 | 11520 |      1 | 3.815e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.730162447567238 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.460878772310447, dt = 0.0015609227639895597 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.2%)
   patch tree reduce : 2.51 us    (0.9%)
   gen split merge   : 1.07 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.5%)
   LB compute        : 270.71 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.292881944444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.482451326692129e-27,-5.741676022503152e-28,4.3723297552665195e-17)
    sum a = (3.706893303723951e-25,3.1428117736653397e-25,4.748326372129526e-18)
    sum e = 1.2367564150883986e-09
    sum de = 1.701214881830482e-13
Info: cfl dt = 0.0015609123256718049 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0158e+04 | 11520 |      1 | 3.820e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.710632495045347 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.4624396950744365, dt = 0.0015609123256718049 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.8%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 294.49 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.292534722222221
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.0222936918513934e-27,2.5449216186698756e-28,4.3726225566534535e-17)
    sum a = (5.622903767776783e-25,1.8470444750651445e-25,-9.200215417668117e-19)
    sum e = 1.2367566912739048e-09
    sum de = 1.8361560062649918e-13
Info: cfl dt = 0.0015609013521789032 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6731e+04 | 11520 |      1 | 4.310e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.039116749959328 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.4640006074001084, dt = 0.0015609013521789032 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (2.2%)
   patch tree reduce : 1.94 us    (0.7%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 260.71 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.292534722222221
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.054131121982394e-27,4.299322625545839e-28,4.372036560664024e-17)
    sum a = (-1.7629199066267424e-25,-1.1613787945952301e-25,-6.5103194019043e-18)
    sum e = 1.2367569884111999e-09
    sum de = 1.9696823407849943e-13
Info: cfl dt = 0.0015608899996820886 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9416e+04 | 11520 |      1 | 3.916e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.34834376590201 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.4655615087522875, dt = 0.0015608899996820886 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (2.0%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 1.09 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 289.78 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.292361111111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.2005075490716e-27,3.467195665762773e-29,4.3705840762452495e-17)
    sum a = (-2.0390577710350868e-26,-4.611023515897912e-25,-1.2021154479260357e-17)
    sum e = 1.2367573062779091e-09
    sum de = 2.1017793047169911e-13
Info: cfl dt = 0.0015608784326383766 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0203e+04 | 11520 |      1 | 3.814e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.732392151584582 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.4671223987519695, dt = 0.0015608784326383766 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (1.9%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.68 us    (0.5%)
   LB compute        : 314.25 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.292100694444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.2916947950811605e-27,-9.45157538486932e-28,4.368277629797503e-17)
    sum a = (1.2346822453607866e-25,-2.25657575832238e-25,-1.7451157673828033e-17)
    sum e = 1.2367576446494379e-09
    sum de = 2.2324327022764503e-13
Info: cfl dt = 0.00156086681909854 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0182e+04 | 11520 |      1 | 3.817e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.721856743055765 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.4686832771846077, dt = 0.00156086681909854 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (1.9%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 309.94 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2919270833333325
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.617611187662861e-27,-1.1282254696392063e-27,4.3651299577575633e-17)
    sum a = (-1.5724079063800754e-26,2.190192830105686e-25,-2.27990017613356e-17)
    sum e = 1.236758003299042e-09
    sum de = 2.3616287675137367e-13
Info: cfl dt = 0.0015608553259495747 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0110e+04 | 11520 |      1 | 3.826e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.687021563853481 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.4702441440037064, dt = 0.0015608553259495747 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (1.9%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 310.90 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.291666666666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.447371880473909e-27,-4.6113702354644885e-28,4.361153999808941e-17)
    sum a = (5.044107459312674e-25,1.9574677226283573e-25,-2.806340492841035e-17)
    sum e = 1.2367583819979034e-09
    sum de = 2.4893540999838083e-13
Info: cfl dt = 0.001560844114231478 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0120e+04 | 11520 |      1 | 3.825e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.691767155129975 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.471804999329656, dt = 0.001560844114231478 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (1.9%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 308.72 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.291666666666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.674759146153931e-27,-1.58797561491935e-28,4.35636289117895e-17)
    sum a = (-3.25326969318521e-26,4.800131301899945e-25,-3.324312750659124e-17)
    sum e = 1.2367587805151947e-09
    sum de = 2.615595709545501e-13
Info: cfl dt = 0.0015608333346663437 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0156e+04 | 11520 |      1 | 3.820e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.708827784632785 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.4733658434438874, dt = 0.0015608333346663437 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (1.9%)
   patch tree reduce : 2.28 us    (0.7%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 311.07 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 us    (63.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2914062500000005
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.198713181244702e-27,7.988418813917429e-28,4.350769956049231e-17)
    sum a = (-7.044558006609493e-25,-9.120250167049029e-26,-3.833697143956789e-17)
    sum e = 1.236759198618148e-09
    sum de = 2.740341006035969e-13
Info: cfl dt = 0.00156082312352802 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7470e+04 | 11520 |      1 | 4.194e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.39862407600126 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.4749266767785536, dt = 0.00156082312352802 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.90 us    (2.1%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 313.04 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.291232638888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.582306561866097e-27,2.2952835307349557e-28,4.3443887008189907e-17)
    sum a = (-2.508273360482763e-25,4.601662087600353e-25,-4.334378468976997e-17)
    sum e = 1.2367596360721199e-09
    sum de = 2.8635777658630934e-13
Info: cfl dt = 0.0015608135989714955 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0240e+04 | 11520 |      1 | 3.810e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.749561077466687 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.4764874999020816, dt = 0.0015608135989714955 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (1.9%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 313.98 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.290798611111112
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.5264847116473166e-27,1.3376440878512779e-27,4.337232806474887e-17)
    sum a = (1.03633091571383e-25,-4.689576300901433e-25,-4.826245591228862e-17)
    sum e = 1.2367600926406508e-09
    sum de = 2.9852941852606055e-13
Info: cfl dt = 0.0015608048579241571 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9930e+04 | 11520 |      1 | 3.849e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.598254114280218 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.478048313501053, dt = 0.0015608048579241571 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.24 us    (1.9%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.4%)
   LB compute        : 349.38 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.66 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.290538194444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.978260306896206e-27,-9.708147864135765e-29,4.3293161224565135e-17)
    sum a = (-4.069010686251881e-25,4.377112627502892e-25,-5.309192027753511e-17)
    sum e = 1.2367605680855284e-09
    sum de = 3.105478809604291e-13
Info: cfl dt = 0.0015607969736268496 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0146e+04 | 11520 |      1 | 3.821e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.703792116791755 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.4796091183589772, dt = 0.0015607969736268496 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (2.0%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.5%)
   LB compute        : 292.21 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.290538194444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9228459462380177e-27,1.2904902267969042e-27,4.320652659051248e-17)
    sum a = (-4.6336989755520005e-26,2.4530339991358307e-25,-5.78311514542856e-17)
    sum e = 1.2367610621668376e-09
    sum de = 3.224120606037403e-13
Info: cfl dt = 0.0015607899938883964 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8122e+04 | 11520 |      1 | 4.096e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.71654052551993 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.481169915332604, dt = 0.0015607899938883964 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.7%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 326.91 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.289930555555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1274104905180213e-27,1.5179382624709422e-27,4.311256581904711e-17)
    sum a = (-9.216430174817288e-26,-2.8133935134612185e-25,-6.247916895769502e-17)
    sum e = 1.236761574643022e-09
    sum de = 3.341208880268567e-13
Info: cfl dt = 0.0015607839400980101 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0125e+04 | 11520 |      1 | 3.824e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.693195923647073 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.4827307053264924, dt = 0.0015607839400980101 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (1.9%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 308.59 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.289670138888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9582113420287982e-27,7.073079158156057e-28,4.3011422045974296e-17)
    sum a = (1.6747179160854031e-25,-6.800904298393679e-26,-6.703503641863947e-17)
    sum e = 1.2367621052709283e-09
    sum de = 3.4567333420635046e-13
Info: cfl dt = 0.0015607788070301906 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0123e+04 | 11520 |      1 | 3.824e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.692315934599717 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.4842914892665906, dt = 0.0015607788070301906 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.88 us    (2.4%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.5%)
   LB compute        : 265.57 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.289496527777779
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.422468841674434e-27,7.593158508020473e-28,4.2903239819410153e-17)
    sum a = (1.2047534123739223e-25,-7.088334819085414e-26,-7.14978576508179e-17)
    sum e = 1.236762653805857e-09
    sum de = 3.570684059456674e-13
Info: cfl dt = 0.0015607745633855418 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0205e+04 | 11520 |      1 | 3.814e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.73250216580116 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.4858522680736206, dt = 0.0015607745633855418 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.7%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 1.37 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 321.30 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.289496527777779
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.546247726942165e-27,6.28949293769367e-28,4.2788165043470894e-17)
    sum a = (-9.429107956955177e-26,-8.60211244675744e-28,-7.586678122401092e-17)
    sum e = 1.2367632200016164e-09
    sum de = 3.6830514758994714e-13
Info: cfl dt = 0.0015607711531100018 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0041e+04 | 11520 |      1 | 3.835e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.652285138562052 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.487413042637006, dt = 0.0015607711531100018 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.8%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 317.68 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.92 us    (85.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.288715277777779
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.276846623712397e-27,6.802637896226561e-28,4.266634490746788e-17)
    sum a = (3.07235835773704e-25,-2.8244434660480044e-25,-8.014099708562315e-17)
    sum e = 1.2367638036105573e-09
    sum de = 3.7938264005893154e-13
Info: cfl dt = 0.0015607684974258196 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8610e+04 | 11520 |      1 | 4.027e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.954252014945514 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.488973813790116, dt = 0.0015607684974258196 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (1.8%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 320.98 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.288454861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.056618928942445e-27,3.2591639258170066e-29,4.253792782744789e-17)
    sum a = (-2.5303212577213485e-25,-1.1782709718788264e-25,-8.431973895530059e-17)
    sum e = 1.236764404383628e-09
    sum de = 3.903000009605581e-13
Info: cfl dt = 0.0015607664974790303 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0099e+04 | 11520 |      1 | 3.827e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.680556222203341 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.4905345822875415, dt = 0.0015607664974790303 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.6%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 318.97 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.288454861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1950208060003954e-27,-2.9124443592407297e-29,4.240306337952175e-17)
    sum a = (4.36162466446393e-25,-1.4494264761154697e-25,-8.84022835136733e-17)
    sum e = 1.236765022070413e-09
    sum de = 4.010563828583785e-13
Info: cfl dt = 0.0015607650375433462 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0083e+04 | 11520 |      1 | 3.829e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.67258584733034 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.4920953487850204, dt = 0.0015607650375433462 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.1%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 296.81 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.28828125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.4151269607823156e-27,-2.503315270680722e-28,4.2261902236697536e-17)
    sum a = (3.100595199239012e-25,1.589015773619079e-25,-9.238794834097726e-17)
    sum e = 1.2367656564191783e-09
    sum de = 4.1165097615240686e-13
Info: cfl dt = 0.0015607639886554847 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7076e+04 | 11520 |      1 | 4.255e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.206026870046701 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.493656113822564, dt = 0.0015607639886554847 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (2.0%)
   patch tree reduce : 1.96 us    (0.7%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.5%)
   LB compute        : 272.22 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.28828125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.84124530810456e-27,2.0109734861424085e-28,4.211459611081482e-17)
    sum a = (2.391127220523636e-25,-5.09629222127807e-25,-9.62760936770362e-17)
    sum e = 1.2367663071769181e-09
    sum de = 4.220830057797818e-13
Info: cfl dt = 0.0015607632125858187 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0183e+04 | 11520 |      1 | 3.817e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.721264804039599 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.4952168778112194, dt = 0.0015607632125858187 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (2.1%)
   patch tree reduce : 1.92 us    (0.7%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 269.03 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.287847222222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.117927522232429e-27,-1.1067288565114772e-27,4.196129768683708e-17)
    sum a = (-1.9609765246421094e-26,-2.95203973374374e-25,-1.0006612390639739e-16)
    sum e = 1.2367669740894008e-09
    sum de = 4.3235173327598677e-13
Info: cfl dt = 0.00156076256601643 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0265e+04 | 11520 |      1 | 3.806e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.761429373644745 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.4967776410238054, dt = 0.00156076256601643 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (2.0%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 278.48 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (62.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.287847222222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.916830173618188e-27,-1.4257108577616523e-27,4.1802160556730944e-17)
    sum a = (-3.6072044939419395e-25,-1.447143327769565e-25,-1.0375748328253046e-16)
    sum e = 1.2367676569012164e-09
    sum de = 4.4245645485917844e-13
Info: cfl dt = 0.001560761904797536 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0102e+04 | 11520 |      1 | 3.827e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.682138181080267 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.498338403589822, dt = 0.001560761904797536 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (2.3%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.5%)
   LB compute        : 271.26 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2874131944444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.0715278703052245e-27,-1.5193251407372472e-27,4.1637339161669395e-17)
    sum a = (2.3262317192475546e-25,-3.868090164616594e-26,-1.0734965917520844e-16)
    sum e = 1.23676835535582e-09
    sum de = 4.523965027299054e-13
Info: cfl dt = 0.0015607610881541874 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9844e+04 | 11520 |      1 | 3.860e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.556043558502141 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.4998991654946194, dt = 0.00010083450538056482 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (2.1%)
   patch tree reduce : 1.71 us    (0.6%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.5%)
   LB compute        : 271.76 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.286892361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.590913781036488e-27,-1.4056011229002282e-27,4.162371134623566e-17)
    sum a = (9.889967604848365e-26,-1.8116790792743642e-26,-1.0756436263477103e-16)
    sum e = 1.2367684087145057e-09
    sum de = 4.5295093956045e-13
Info: cfl dt = 0.0015607609261386417 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0828e+04 | 11520 |      1 | 3.737e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9714174401272704 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 1935                                                    [SPH][rank=0]
Info: time since start : 887.80608081 (s)                                             [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[-3.73855700e-25 -4.30186220e-16  5.96747654e-11 ... -9.88817183e-16
  3.99920796e-09  2.30589485e-09]
(11520, 3)
[[-3.73855700e-25 -4.30186220e-16  5.96747654e-11 -3.77360223e-13
  -2.18036336e-11]
 [ 2.46276423e-06 -1.38826451e-19 -9.30244063e-17  8.88394676e-09
  -1.25690278e-10]
 [ 2.51790277e-05  2.35068581e-05  4.90946507e-06 -1.73455421e-11
  -3.47700653e-10]
 ...
 [ 3.43782580e-05  3.97367550e-05  2.91624210e-05 -2.41297235e-11
   2.22072822e-07]
 [ 1.07170230e-05  4.23248956e-06 -2.20108133e-15 -1.53760340e-12
  -1.11194829e-11]
 [-3.15648527e-28 -1.17474267e-23 -9.88817183e-16  3.99920796e-09
   2.30589485e-09]]
compute original rho
Info: Dumping state to _to_trash/dusty_settle/dump/0000035.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.82 us   (70.0%)
Info: dump to _to_trash/dusty_settle/dump/0000035.sham                      [Shamrock Dump][rank=0]
              - took 1.23 ms, bandwidth = 2.41 GB/s
Info: evolve_until (target_time = 3.60s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 3.5, dt = 0.0015607609261386417 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.50 us    (0.9%)
   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.42 us    (0.4%)
   LB compute        : 358.04 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.286892361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.7192000206697105e-27,-1.4499812274219918e-27,4.145581826723863e-17)
    sum a = (-2.733686152300998e-25,1.4945381589227092e-25,-1.11064478703723e-16)
    sum e = 1.236769115706025e-09
    sum de = 4.627976040181083e-13
Info: cfl dt = 0.0015607598999826124 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4544e+04 | 11520 |      1 | 4.694e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.971166388528728 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.5015607609261385, dt = 0.0015607598999826124 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.7%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 325.37 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.286892361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.018479776619054e-27,-1.0907797564489685e-27,4.127974186038259e-17)
    sum a = (-1.2573993113628642e-25,-1.9317289956035674e-25,-1.1445038434829328e-16)
    sum e = 1.2367698457059837e-09
    sum de = 4.723954330094805e-13
Info: cfl dt = 0.0015607583526785075 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9317e+04 | 11520 |      1 | 3.929e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.298876567543317 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.503121520826121, dt = 0.0015607583526785075 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.7%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 316.58 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (71.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.286197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.9085696740143745e-27,-1.6510785760362326e-27,4.109847017416159e-17)
    sum a = (-2.206870041258005e-27,2.2059859063632357e-26,-1.1773585278032064e-16)
    sum e = 1.2367705904909472e-09
    sum de = 4.818270338631315e-13
Info: cfl dt = 0.0015607562806242417 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0050e+04 | 11520 |      1 | 3.834e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.656540559086176 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.5046822791787995, dt = 0.0015607562806242417 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (1.8%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.4%)
   LB compute        : 322.66 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.286197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.002530676556545e-27,-1.454141862220907e-27,4.09121492913398e-17)
    sum a = (-8.320368126957558e-26,-6.434664420219158e-26,-1.2092048330987075e-16)
    sum e = 1.236771349865635e-09
    sum de = 4.910916109545981e-13
Info: cfl dt = 0.0015607535941073029 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0120e+04 | 11520 |      1 | 3.825e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.690409449603656 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.506243035459424, dt = 0.0015607535941073029 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.8%)
   patch tree reduce : 1.71 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.70 us    (0.6%)
   LB compute        : 278.49 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.285677083333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.809754597540135e-27,-1.645531062971012e-27,4.0720936996397426e-17)
    sum a = (-1.1414250835387652e-25,-7.169848589187496e-26,-1.2400397524429966e-16)
    sum e = 1.2367721235683997e-09
    sum de = 5.001886764251827e-13
Info: cfl dt = 0.0015607502235909137 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0136e+04 | 11520 |      1 | 3.823e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.698570348787767 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.507803789053531, dt = 0.0015607502235909137 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (2.1%)
   patch tree reduce : 1.91 us    (0.7%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 270.14 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.284895833333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.61559164025742e-27,-1.7828320113352178e-27,4.052499147877341e-17)
    sum a = (-1.7281040613489855e-25,6.179026350184635e-25,-1.2698606990950827e-16)
    sum e = 1.2367729113370235e-09
    sum de = 5.091177781383972e-13
Info: cfl dt = 0.0015607461208257249 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8151e+04 | 11520 |      1 | 4.092e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.730025820169864 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.5093645392771218, dt = 0.0015607461208257249 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.0%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 1.40 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.76 us    (0.5%)
   LB compute        : 301.93 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.284288194444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.298343236840126e-27,-2.6350687059797078e-28,4.032447131023853e-17)
    sum a = (3.5329631667487943e-25,-8.848855426311448e-26,-1.2986654760528962e-16)
    sum e = 1.2367737129085658e-09
    sum de = 5.178784980407575e-13
Info: cfl dt = 0.0015607412597573745 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0241e+04 | 11520 |      1 | 3.809e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.749598463051136 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.5109252853979473, dt = 0.0015607412597573745 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (1.9%)
   patch tree reduce : 2.15 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 311.12 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.284288194444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.224084479598787e-27,-9.409969036880166e-28,4.011953538400589e-17)
    sum a = (-3.757745795754777e-25,-3.4823533784145715e-25,-1.3264523029912912e-16)
    sum e = 1.236774528019432e-09
    sum de = 5.264704544171421e-13
Info: cfl dt = 0.0015607356367454744 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9866e+04 | 11520 |      1 | 3.857e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.566750205412752 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.512486026657705, dt = 0.0015607356367454744 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.8%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 316.22 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.39 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.284114583333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1114613904555127e-27,-1.706553706688437e-27,3.991034284367005e-17)
    sum a = (-4.192905722574415e-25,1.4794463229885602e-25,-1.3532198059134378e-16)
    sum e = 1.2367753564054413e-09
    sum de = 5.348933002655768e-13
Info: cfl dt = 0.0015607292701030429 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0175e+04 | 11520 |      1 | 3.818e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.717186330243157 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.5140467622944502, dt = 0.0015607292701030429 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (2.0%)
   patch tree reduce : 1.55 us    (0.5%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.5%)
   LB compute        : 268.43 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.283767361111112
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4159419399035003e-27,-1.0755240955196122e-27,3.969705301785314e-17)
    sum a = (-1.3997224926489274e-25,1.665929441871611e-25,-1.3789670133587082e-16)
    sum e = 1.236776197801888e-09
    sum de = 5.431467243451123e-13
Info: cfl dt = 0.0015607221989714405 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6919e+04 | 11520 |      1 | 4.279e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.12926565544458 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.515607491564553, dt = 0.0015607221989714405 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (1.9%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 313.88 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2835937500000005
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.401726437673873e-27,-7.815059030629291e-28,3.947982535392876e-17)
    sum a = (2.746377822035523e-25,2.0987195404537e-26,-1.4036933640772726e-16)
    sum e = 1.2367770519436193e-09
    sum de = 5.512304500873405e-13
Info: cfl dt = 0.0015607144815846005 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0049e+04 | 11520 |      1 | 3.834e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.655584604544169 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.5171682137635245, dt = 0.0015607144815846005 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.83 us    (2.3%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 1.04 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 273.33 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.283333333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1814987429039207e-27,-8.667989164406932e-28,3.9258819349582284e-17)
    sum a = (-4.514968327173621e-25,-4.1218507481981056e-25,-1.4273986833747823e-16)
    sum e = 1.236777918565092e-09
    sum de = 5.591442360947955e-13
Info: cfl dt = 0.0015607061929908774 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0142e+04 | 11520 |      1 | 3.822e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.701104245340668 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.518728928245109, dt = 0.0015607061929908774 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (1.9%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.4%)
   LB compute        : 318.49 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 us    (60.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.283072916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8889281987075587e-27,-1.852869363783626e-27,3.9034194491290355e-17)
    sum a = (-2.5334625369945295e-26,2.3166258536555587e-25,-1.4500832079166328e-16)
    sum e = 1.2367787974004472e-09
    sum de = 5.668878743853722e-13
Info: cfl dt = 0.0015606974222911508 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0058e+04 | 11520 |      1 | 3.833e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.659736865658664 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.5202896344381, dt = 0.0015606974222911508 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.6%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 881.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 302.86 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.283072916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1683841693680384e-27,-9.846835690766276e-28,3.8806110184989405e-17)
    sum a = (-2.3323825243586175e-26,2.205219656121102e-25,-1.4717475521870882e-16)
    sum e = 1.236779688183567e-09
    sum de = 5.744611938981039e-13
Info: cfl dt = 0.0015606882695383903 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6457e+04 | 11520 |      1 | 4.354e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.903580221313634 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.521850331860391, dt = 0.0015606882695383903 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (2.0%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.5%)
   LB compute        : 289.24 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2828125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1361392496764444e-27,-6.615409330275372e-28,3.85747256966452e-17)
    sum a = (4.621026375393638e-26,2.149049352737912e-25,-1.4923927327275317e-16)
    sum e = 1.2367805906481495e-09
    sum de = 5.818640566624133e-13
Info: cfl dt = 0.0015606788423426755 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0096e+04 | 11520 |      1 | 3.828e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.678247314505487 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.523411020129929, dt = 0.0015606788423426755 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.6%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 337.10 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.282378472222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2710131610746166e-27,-3.2522295344854813e-28,3.834020008579914e-17)
    sum a = (-5.910649803274101e-25,1.8697095331322358e-25,-1.5120201284741329e-16)
    sum e = 1.2367815045277596e-09
    sum de = 5.890963587551873e-13
Info: cfl dt = 0.00156066925234 cfl multiplier : 0.9999999999999997            [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9812e+04 | 11520 |      1 | 3.864e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.5394525809772 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 3.524971698972272, dt = 0.00156066925234 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.95 us    (2.4%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 270.95 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.282378472222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.560506098768287e-28,-6.865047418210291e-29,3.810269215041215e-17)
    sum a = (-2.7429175607610915e-25,1.077791641485021e-25,-1.5306315283231667e-16)
    sum e = 1.236782429555894e-09
    sum de = 5.961580314476127e-13
Info: cfl dt = 0.0015606596116093548 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0201e+04 | 11520 |      1 | 3.814e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.729229871584758 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.526532368224612, dt = 0.0015606596116093548 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (1.9%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.4%)
   LB compute        : 317.53 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.281684027777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.594606156280795e-28,2.1496613127729194e-29,3.786236035775372e-17)
    sum a = (7.759999963456978e-26,7.63355133752661e-27,-1.5482290665617345e-16)
    sum e = 1.2367833654660341e-09
    sum de = 6.030490386414395e-13
Info: cfl dt = 0.0015606500291714988 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0170e+04 | 11520 |      1 | 3.818e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.714136219543711 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.5280930278362215, dt = 0.0015606500291714988 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (1.7%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 1.44 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.4%)
   LB compute        : 340.74 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.281336805555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.033917747530459e-27,-2.843100445925474e-29,3.761936279562682e-17)
    sum a = (2.0245822291305274e-25,2.1087501375147514e-25,-1.564815279219957e-16)
    sum e = 1.2367843119917054e-09
    sum de = 6.097693774172322e-13
Info: cfl dt = 0.0015606406076723982 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9813e+04 | 11520 |      1 | 3.864e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.540114143797581 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.529653677865393, dt = 0.0015606406076723982 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.9%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 268.45 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.281163194444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5044161993744673e-27,4.444944843507875e-28,3.7373857105150033e-17)
    sum a = (2.149855475730202e-25,-2.939582966515571e-25,-1.5803930403519048e-16)
    sum e = 1.2367852688665217e-09
    sum de = 6.163190785577289e-13
Info: cfl dt = 0.0015606314403550782 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0278e+04 | 11520 |      1 | 3.805e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.766551060844709 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.531214318473065, dt = 0.0015606314403550782 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (2.1%)
   patch tree reduce : 1.84 us    (0.7%)
   gen split merge   : 1.05 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.5%)
   LB compute        : 261.03 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (63.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.280468750000001
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.840734178953456e-27,-4.0288813636163425e-28,3.7126000434107184e-17)
    sum a = (-4.623384068446357e-25,-1.682194056739704e-25,-1.5949655980726886e-16)
    sum e = 1.2367862358242347e-09
    sum de = 6.226982050911321e-13
Info: cfl dt = 0.0015606226084125979 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0171e+04 | 11520 |      1 | 3.818e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.71409947730528 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.5327749499134202, dt = 0.0015606226084125979 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (2.1%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 291.24 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.280034722222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.336014129608908e-28,-5.575250630546539e-28,3.687594937736144e-17)
    sum a = (-6.404395802057048e-26,2.0274409319569486e-25,-1.6085365521047326e-16)
    sum e = 1.236787212598785e-09
    sum de = 6.289068522613883e-13
Info: cfl dt = 0.001560614178801064 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8112e+04 | 11520 |      1 | 4.098e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.709851341389705 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.5343355725218326, dt = 0.001560614178801064 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.9%)
   patch tree reduce : 1.72 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 277.30 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2796006944444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.593158508020473e-28,6.657015678264525e-29,3.662385992545626e-17)
    sum a = (4.607025839295287e-25,5.599205485401295e-25,-1.6211098570262877e-16)
    sum e = 1.2367881989243344e-09
    sum de = 6.349451467600505e-13
Info: cfl dt = 0.0015606062025755563 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9997e+04 | 11520 |      1 | 3.840e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.629315490991432 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.5358961867006338, dt = 0.0015606062025755563 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.8%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 1.35 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 309.29 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.279340277777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.911811690101593e-27,1.1781530872261904e-27,3.6369887411714307e-17)
    sum a = (1.6554923161187487e-25,-1.8906366593718633e-25,-1.6326898088106134e-16)
    sum e = 1.2367891945353158e-09
    sum de = 6.408132472647517e-13
Info: cfl dt = 0.0015605987137944882 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0094e+04 | 11520 |      1 | 3.828e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.676541570308844 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.5374567929032095, dt = 0.0015605987137944882 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.9%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 304.58 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.279166666666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9419762923937293e-27,3.2175575778278537e-28,3.611418646288951e-17)
    sum a = (-3.6067156193530673e-26,3.2103427770468593e-25,-1.64328105540697e-16)
    sum e = 1.2367901991664682e-09
    sum de = 6.465113429918453e-13
Info: cfl dt = 0.0015605917290184804 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0163e+04 | 11520 |      1 | 3.819e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.709973208978544 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.539017391617004, dt = 0.0015605917290184804 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.5%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (0.4%)
   LB compute        : 333.56 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.279166666666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7148749762862675e-27,1.2391757309436151e-27,3.585691094626186e-17)
    sum a = (4.439792590748552e-25,1.1576766964231118e-25,-1.6528885681367549e-16)
    sum e = 1.236791212552868e-09
    sum de = 6.520396554507643e-13
Info: cfl dt = 0.0015605852474126181 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0075e+04 | 11520 |      1 | 3.830e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.666998617863298 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.5405779833460227, dt = 0.0015605852474126181 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.8%)
   patch tree reduce : 1.47 us    (0.5%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 300.93 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.278645833333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8091219284009987e-27,1.2669132962697173e-27,3.559821392458742e-17)
    sum a = (-3.7520327240965164e-25,-1.0991877059384431e-25,-1.6615176584481013e-16)
    sum e = 1.2367922344299815e-09
    sum de = 6.573984344530437e-13
Info: cfl dt = 0.0015605792514385784 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0129e+04 | 11520 |      1 | 3.824e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.693230999861164 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.5421385685934355, dt = 0.0015605792514385784 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.9%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 295.77 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.74 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (72.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.278385416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.572719953989994e-27,9.01470873098321e-28,3.533824760460354e-17)
    sum a = (5.3443353992067384e-27,8.102524223277683e-26,-1.66917396023501e-16)
    sum e = 1.2367932645336809e-09
    sum de = 6.625879619560566e-13
Info: cfl dt = 0.0015605737081061985 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0231e+04 | 11520 |      1 | 3.811e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.74290146680479 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.543699147844874, dt = 0.0015605737081061985 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.99 us    (2.4%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1.29 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 264.63 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.278385416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8712455008121686e-27,1.1871677959571735e-27,3.5077163291757e-17)
    sum a = (1.1971255819092443e-25,-1.533732205527408e-25,-1.6758634271043695e-16)
    sum e = 1.2367943026002951e-09
    sum de = 6.676085498514094e-13
Info: cfl dt = 0.0015605685707318214 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9808e+04 | 11520 |      1 | 3.865e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.53690816255006 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.54525972155298, dt = 0.0015605685707318214 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (2.0%)
   patch tree reduce : 1.98 us    (0.7%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.5%)
   LB compute        : 262.02 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (63.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.278124999999999
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1357925301098683e-27,7.828927813292342e-28,3.481511134206822e-17)
    sum a = (-2.3232637997576616e-25,1.3122642155778943e-25,-1.6815923169036333e-16)
    sum e = 1.2367953483666422e-09
    sum de = 6.724605387843539e-13
Info: cfl dt = 0.00156056378115789 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7697e+04 | 11520 |      1 | 4.159e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.507300693162675 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.546820290123712, dt = 0.00156056378115789 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (2.0%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 298.69 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.277690972222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5207120190035524e-27,1.1587367914979188e-27,3.45522411193433e-17)
    sum a = (-6.931548231079621e-26,2.4790813065748735e-25,-1.6863672229007873e-16)
    sum e = 1.2367964015700624e-09
    sum de = 6.771442987734881e-13
Info: cfl dt = 0.0015605592723136788 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0158e+04 | 11520 |      1 | 3.820e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.707122580478135 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.54838085390487, dt = 0.0015605592723136788 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (1.9%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1.18 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 330.29 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (63.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.276996527777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5068432363405011e-27,1.6607867239003684e-27,3.4288700941478273e-17)
    sum a = (1.4819695746343192e-25,3.0795493215478323e-25,-1.6901950356250016e-16)
    sum e = 1.2367974619484572e-09
    sum de = 6.816602291967408e-13
Info: cfl dt = 0.0015605549710616992 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9956e+04 | 11520 |      1 | 3.846e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.608820484015029 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.5499414131771836, dt = 0.0015605549710616992 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.7%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 327.44 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.276736111111112
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.941629572827153e-27,2.1787857563653265e-27,3.402463803853929e-17)
    sum a = (2.3123109286495166e-25,-1.480541090020025e-25,-1.6930829245202577e-16)
    sum e = 1.2367985292403336e-09
    sum de = 6.860087573771975e-13
Info: cfl dt = 0.0015605508012363474 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0151e+04 | 11520 |      1 | 3.821e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.703880360511215 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.551501968148245, dt = 0.0015605508012363474 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (2.1%)
   patch tree reduce : 1.57 us    (0.5%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 273.93 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.276302083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.376762628880381e-27,1.621954132443825e-27,3.3760198511612576e-17)
    sum a = (4.141627632275616e-25,7.546073990879414e-26,-1.695038388119469e-16)
    sum e = 1.2367996031848366e-09
    sum de = 6.901903400072447e-13
Info: cfl dt = 0.0015605466867516858 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0137e+04 | 11520 |      1 | 3.823e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.697040155036012 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.5530625189494813, dt = 0.0015605466867516858 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.9%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 286.41 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 5.24 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.276302083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1402391144813436e-27,1.8674315855798297e-27,3.349552727755535e-17)
    sum a = (5.502872921023741e-25,1.8735061123862461e-25,-1.6960692011615646e-16)
    sum e = 1.2368006835217993e-09
    sum de = 6.942054616031542e-13
Info: cfl dt = 0.0015605425546699728 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0222e+04 | 11520 |      1 | 3.812e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.73828040869591 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.554623065636233, dt = 0.0015605425546699728 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.7%)
   patch tree reduce : 2.17 us    (0.6%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 322.93 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.275868055555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.109320303062039e-27,2.2772541132729893e-27,3.3230768029576596e-17)
    sum a = (-7.509807124215536e-26,-2.2145221420923437e-25,-1.6961834072697426e-16)
    sum e = 1.2368017699917864e-09
    sum de = 6.980546349323987e-13
Info: cfl dt = 0.0015605383381489893 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7214e+04 | 11520 |      1 | 4.233e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.271248594230812 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.5561836081909033, dt = 0.0015605383381489893 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.7%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.66 us    (0.5%)
   LB compute        : 320.62 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.275434027777779
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.491812754989689e-27,1.622647571576978e-27,3.296606319483187e-17)
    sum a = (-4.0845783947911557e-25,-2.6516869748057084e-25,-1.6953893548111775e-16)
    sum e = 1.2368028623361363e-09
    sum de = 7.017383997120108e-13
Info: cfl dt = 0.0015605339791549882 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5892e+04 | 11520 |      1 | 4.449e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.626795604056364 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.5577441465290525, dt = 0.0015605339791549882 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.8%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 298.68 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.275434027777779
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5837542101264184e-27,1.1670580610957494e-27,3.2701553882645566e-17)
    sum a = (2.0367694218956835e-26,-2.667615271694223e-25,-1.6936956470711984e-16)
    sum e = 1.2368039602970139e-09
    sum de = 7.05257323162628e-13
Info: cfl dt = 0.0015605294308569013 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9873e+04 | 11520 |      1 | 3.856e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.568253504263053 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.5593046805082076, dt = 0.0015605294308569013 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.8%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 290.72 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.32 us    (62.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.275434027777779
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.960291659428256e-27,7.322717246090977e-28,3.2437379846696334e-17)
    sum a = (1.8391392689472053e-25,-4.761257104095413e-26,-1.6911111655844116e-16)
    sum e = 1.236805063617456e-09
    sum de = 7.086120002668739e-13
Info: cfl dt = 0.0015605246596213436 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7744e+04 | 11520 |      1 | 4.152e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.529694873407898 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.5608652099390645, dt = 0.0015605246596213436 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (2.0%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 270.25 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.38 us    (60.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.275434027777779
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.392304239382297e-27,8.383679119814386e-28,3.2173679437076806e-17)
    sum a = (-4.22228153785259e-26,2.7373821828807014e-25,-1.6876450484274589e-16)
    sum e = 1.2368061720414287e-09
    sum de = 7.118030516521226e-13
Info: cfl dt = 0.0015605196465425456 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0083e+04 | 11520 |      1 | 3.829e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.670483449388486 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.562425734598686, dt = 0.0015605196465425456 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (2.1%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.5%)
   LB compute        : 263.65 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.36 us    (62.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.275434027777779
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1336514427163944e-27,1.502682601541586e-27,3.1910589559713595e-17)
    sum a = (-4.1276964400905813e-26,9.579133513412733e-26,-1.6833066968665638e-16)
    sum e = 1.2368072853138687e-09
    sum de = 7.148311262746959e-13
Info: cfl dt = 0.0015605143884584774 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6746e+04 | 11520 |      1 | 4.307e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.042862263697074 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.5639862542452287, dt = 0.0015605143884584774 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.09 us   (3.4%)
   patch tree reduce : 3.31 us    (1.1%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 273.80 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.274826388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.092045094727241e-27,1.5359676799329086e-27,3.1648245631811015e-17)
    sum a = (-4.392742745564151e-25,3.762153468244878e-25,-1.6781057683568458e-16)
    sum e = 1.2368084031807507e-09
    sum de = 7.176968985942074e-13
Info: cfl dt = 0.0015605088984196656 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9764e+04 | 11520 |      1 | 3.870e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.514669467804412 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.5655467686336872, dt = 0.0015605088984196656 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 23.85 us   (7.8%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 269.14 us  (87.6%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.274565972222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.093839462554139e-27,2.332035804792041e-27,3.13867815395416e-17)
    sum a = (-9.065329787703347e-27,1.333504256226357e-25,-1.672052148816836e-16)
    sum e = 1.2368095253891273e-09
    sum de = 7.204010681443194e-13
Info: cfl dt = 0.001560503205595642 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0223e+04 | 11520 |      1 | 3.812e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.738640694047957 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.567107277532107, dt = 0.001560503205595642 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (2.1%)
   patch tree reduce : 1.77 us    (0.6%)
   gen split merge   : 1.08 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 260.28 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.274131944444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4249566486344834e-27,2.3486783439877027e-27,3.112632960212596e-17)
    sum a = (-4.605427462093371e-25,-4.0833510075254756e-25,-1.665155976563456e-16)
    sum e = 1.2368106516871856e-09
    sum de = 7.229443630017739e-13
Info: cfl dt = 0.001560497354621441 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9918e+04 | 11520 |      1 | 3.850e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.589941496486512 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.5686677807377025, dt = 0.001560497354621441 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.7%)
   patch tree reduce : 2.16 us    (0.6%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 318.57 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.274131944444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3154540355903962e-27,1.287716470264294e-27,3.08670205273445e-17)
    sum a = (8.495253476338632e-26,-1.8585347615014823e-25,-1.6574276188932076e-16)
    sum e = 1.2368117818243047e-09
    sum de = 7.253275326151599e-13
Info: cfl dt = 0.0015604914044077174 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0252e+04 | 11520 |      1 | 3.808e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.75269402075325 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.570228278092324, dt = 0.0015604914044077174 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (2.0%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.5%)
   LB compute        : 266.65 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.274131944444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8944757117727794e-27,1.1622039871636815e-27,3.060898337620807e-17)
    sum a = (-3.789575518765396e-25,2.6324440388607252e-25,-1.6488776592112755e-16)
    sum e = 1.2368129155510947e-09
    sum de = 7.275513549942905e-13
Info: cfl dt = 0.0015604854264526075 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7726e+04 | 11520 |      1 | 4.155e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.520837144982526 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.571788769496732, dt = 0.0015604854264526075 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (2.1%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.66 us    (0.6%)
   LB compute        : 266.25 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 us    (63.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.273350694444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.16379814461101e-28,1.9270673510309492e-27,3.035234552744419e-17)
    sum a = (-9.950158121606007e-26,2.2391947064499115e-25,-1.6395169163769885e-16)
    sum e = 1.2368140526194552e-09
    sum de = 7.296166311455516e-13
Info: cfl dt = 0.00156047950271007 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0160e+04 | 11520 |      1 | 3.820e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.707562850427456 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.5733492549231847, dt = 0.00156047950271007 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (2.0%)
   patch tree reduce : 1.91 us    (0.7%)
   gen split merge   : 1.04 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.5%)
   LB compute        : 268.43 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.272829861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.791360560114072e-28,2.25020998708004e-27,3.009723263831773e-17)
    sum a = (2.9133458301138276e-25,-2.1074308695639286e-25,-1.6293564146713176e-16)
    sum e = 1.2368151927826163e-09
    sum de = 7.315241877153059e-13
Info: cfl dt = 0.001560473723097878 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0292e+04 | 11520 |      1 | 3.803e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.771688263082284 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.5749097344258947, dt = 0.001560473723097878 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (2.0%)
   patch tree reduce : 1.99 us    (0.7%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.5%)
   LB compute        : 277.85 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.272309027777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7523206894765057e-27,1.5512233408622648e-27,2.984376861391572e-17)
    sum a = (-1.2602562805914529e-26,3.29852006381908e-25,-1.6184073885579867e-16)
    sum e = 1.2368163357951881e-09
    sum de = 7.332748743632623e-13
Info: cfl dt = 0.0015604681826820157 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6928e+04 | 11520 |      1 | 4.278e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.131260521824903 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.5764702081489927, dt = 0.0015604681826820157 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (2.0%)
   patch tree reduce : 1.68 us    (0.6%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 265.46 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.272309027777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4804925492807041e-27,2.4908333662839764e-27,2.9592075573736065e-17)
    sum a = (-2.109566662094039e-25,-1.4463614751469354e-25,-1.6066812586240135e-16)
    sum e = 1.2368174814131961e-09
    sum de = 7.348695642007762e-13
Info: cfl dt = 0.0015604629786604009 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9579e+04 | 11520 |      1 | 3.895e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.423941205091625 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.5780306763316747, dt = 0.0015604629786604009 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (2.1%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 284.30 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.272048611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0096473778701196e-27,1.9125051292347457e-27,2.9342273824088667e-17)
    sum a = (2.522800910322309e-26,6.084904123044006e-25,-1.5941896728831142e-16)
    sum e = 1.236818629394125e-09
    sum de = 7.363091551589345e-13
Info: cfl dt = 0.00156045820729157 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0150e+04 | 11520 |      1 | 3.821e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.702343417976468 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.579591139310335, dt = 0.00156045820729157 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (2.1%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.55 us    (0.5%)
   LB compute        : 269.85 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.272048611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2384822918104626e-27,3.467195665762773e-27,2.909448182100197e-17)
    sum a = (2.984298522217997e-25,-2.4609149348841093e-25,-1.5809444321746444e-16)
    sum e = 1.2368197794969531e-09
    sum de = 7.3759456588822e-13
Info: cfl dt = 0.0015604539607692125 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8424e+04 | 11520 |      1 | 4.053e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.860640962706913 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.5811515975176267, dt = 0.0015604539607692125 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (1.9%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 299.92 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2717881944444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9201329596994238e-27,2.3937518876426187e-27,2.8848816153291977e-17)
    sum a = (1.4529768844772108e-25,-2.9148020522934483e-26,-1.566957535982444e-16)
    sum e = 1.236820931482179e-09
    sum de = 7.38726739131018e-13
Info: cfl dt = 0.0015604503242159084 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9857e+04 | 11520 |      1 | 3.858e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.559299132347581 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.582712051478396, dt = 0.0015604503242159084 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (2.1%)
   patch tree reduce : 1.77 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 274.43 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2717881944444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0061194122103407e-27,2.525505322941604e-27,2.8605391509042756e-17)
    sum a = (-4.543364659676217e-25,-1.864605821112233e-25,-1.5522411570229006e-16)
    sum e = 1.2368220851118615e-09
    sum de = 7.397066391065089e-13
Info: cfl dt = 0.001560447372868173 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9875e+04 | 11520 |      1 | 3.856e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.568495822160015 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.584272501802612, dt = 0.001560447372868173 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (2.2%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1.10 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.5%)
   LB compute        : 269.68 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2717881944444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.494629381118795e-28,2.137872847509326e-27,2.8364320654349784e-17)
    sum a = (1.1436822279171768e-25,1.512019759469485e-25,-1.5368076359834526e-16)
    sum e = 1.2368232401496374e-09
    sum de = 7.405352518476767e-13
Info: cfl dt = 0.0015604451695412946 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0176e+04 | 11520 |      1 | 3.818e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.7152079985886 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 3.58583294917548, dt = 0.0015604451695412946 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (2.1%)
   patch tree reduce : 1.71 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.5%)
   LB compute        : 268.18 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2717881944444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.462809851385314e-27,2.609411458053063e-27,2.8125714409009336e-17)
    sum a = (-2.2121124411046383e-25,2.250986638909171e-25,-1.5206694725091106e-16)
    sum e = 1.2368243963607484e-09
    sum de = 7.412135840059601e-13
Info: cfl dt = 0.001560443762494444 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0205e+04 | 11520 |      1 | 3.814e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.729032507521943 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.587393394345021, dt = 0.001560443762494444 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (0.9%)
   patch tree reduce : 2.25 us    (0.3%)
   gen split merge   : 1.01 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.2%)
   LB compute        : 622.83 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 4.60 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (75.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.271614583333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.64025159908083e-28,3.0310224510098162e-27,2.7889681625701456e-17)
    sum a = (-3.11126722749823e-25,1.1116488071611945e-25,-1.5038393371388767e-16)
    sum e = 1.236825553512066e-09
    sum de = 7.417426638002179e-13
Info: cfl dt = 0.0015604431836472614 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0113e+04 | 11520 |      1 | 3.826e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.684092699377288 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.5889538381075154, dt = 0.0015604431836472614 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (2.2%)
   patch tree reduce : 1.57 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.5%)
   LB compute        : 267.65 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.271614583333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.193287208167514e-28,3.117702342653886e-27,2.7656329165395054e-17)
    sum a = (-3.3933097261253686e-25,-2.2026712673067666e-25,-1.4863300345200564e-16)
    sum e = 1.2368267113721036e-09
    sum de = 7.421235403544216e-13
Info: cfl dt = 0.0015604434473703772 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7252e+04 | 11520 |      1 | 4.227e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.288898113347619 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.5905142812911626, dt = 0.0015604434473703772 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.8%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 290.57 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.270920138888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.3958322050420764e-28,2.5019283924144172e-27,2.7425761882660867e-17)
    sum a = (-1.9534319068734095e-25,2.5616265673875206e-25,-1.468154526585964e-16)
    sum e = 1.2368278697110424e-09
    sum de = 7.423572815119771e-13
Info: cfl dt = 0.0015604445497940014 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9431e+04 | 11520 |      1 | 3.914e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.35145124361834 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.592074724738533, dt = 0.0015604445497940014 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.1%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 286.24 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.270920138888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.146766016252277e-28,3.279273660678431e-27,2.7198082602344164e-17)
    sum a = (-1.500692431229438e-25,-2.1158214830750746e-26,-1.449325906992745e-16)
    sum e = 1.2368290283007437e-09
    sum de = 7.424449762978478e-13
Info: cfl dt = 0.0015604464686695123 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0109e+04 | 11520 |      1 | 3.826e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.682542328081132 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.593635169288327, dt = 0.0015604464686695123 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (1.9%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 300.89 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.270920138888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.1820098720550245e-28,3.033102768409274e-27,2.6973392103888858e-17)
    sum a = (-1.6261008984600777e-25,6.331029941769509e-26,-1.4298573935090418e-16)
    sum e = 1.2368301869147652e-09
    sum de = 7.423877316345665e-13
Info: cfl dt = 0.0015604491638009758 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0111e+04 | 11520 |      1 | 3.826e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.683271013703436 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.5951956157569964, dt = 0.0015604491638009758 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.8%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.5%)
   LB compute        : 278.85 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2703125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.855217730358123e-28,3.2120100647626332e-27,2.6751789105131845e-17)
    sum a = (-6.67254178045581e-25,-4.503197197888356e-25,-1.4097623652675177e-16)
    sum e = 1.2368313453283759e-09
    sum de = 7.42186675077134e-13
Info: cfl dt = 0.0015604525780336062 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0170e+04 | 11520 |      1 | 3.818e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.7120017811575 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 3.5967560649207972, dt = 0.0015604525780336062 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.8%)
   patch tree reduce : 1.92 us    (0.7%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 269.78 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.269791666666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.313312948196922e-27,2.1344056518435632e-27,2.6533370236900927e-17)
    sum a = (-2.7319144153157933e-25,-2.82860410084692e-25,-1.3890542851174407e-16)
    sum e = 1.2368325033185789e-09
    sum de = 7.418429526545647e-13
Info: cfl dt = 0.0015604566387712093 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0168e+04 | 11520 |      1 | 3.819e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.711092526311056 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.598316517498831, dt = 0.0015604566387712093 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (2.1%)
   patch tree reduce : 1.72 us    (0.6%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 282.26 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.269270833333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.436745113898077e-27,1.759948519941184e-27,2.631823003762264e-17)
    sum a = (5.595720953757203e-25,-1.4087215989994147e-27,-1.3677467558204356e-16)
    sum e = 1.23683366066412e-09
    sum de = 7.413577268463898e-13
Info: cfl dt = 0.001560461259980734 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0244e+04 | 11520 |      1 | 3.809e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.748486862587521 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.599876974137602, dt = 0.00012302586239787416 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.8%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 308.68 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.268836805555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7027397914560978e-27,2.0248422688054597e-27,2.6303065688951114e-17)
    sum a = (1.1248969618000741e-26,-1.300049285247412e-25,-1.3661246639024612e-16)
    sum e = 1.236833751480192e-09
    sum de = 7.41243548009398e-13
Info: cfl dt = 0.001560461886949412 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0887e+04 | 11520 |      1 | 3.730e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1874806972928371 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 2000                                                    [SPH][rank=0]
Info: time since start : 916.323797362 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[-4.78066964e-26 -1.89640469e-16 -1.11305751e-13 ... -3.36564627e-16
  9.09491063e-10  1.82836539e-09]
(11520, 3)
[[-4.78066964e-26 -1.89640469e-16 -1.11305751e-13 -3.31416167e-13
  -2.07053509e-11]
 [ 2.19200559e-06 -1.65498845e-21 -1.59013899e-17  1.12389293e-08
   1.40032618e-10]
 [ 2.48732486e-05  2.24751343e-05  2.94457603e-06 -6.19697986e-12
  -2.30802833e-10]
 ...
 [ 3.42481788e-05  3.91623511e-05  2.64424207e-05 -6.58471033e-12
   1.71330657e-07]
 [ 1.04216799e-05  3.36744245e-06 -2.34738167e-16 -6.30521074e-13
  -7.79739813e-12]
 [-3.63221828e-31 -7.85252648e-25 -3.36564627e-16  9.09491063e-10
   1.82836539e-09]]
compute original rho
Info: Dumping state to _to_trash/dusty_settle/dump/0000036.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.06 us   (69.2%)
Info: dump to _to_trash/dusty_settle/dump/0000036.sham                      [Shamrock Dump][rank=0]
              - took 1.29 ms, bandwidth = 2.29 GB/s
Info: evolve_until (target_time = 3.70s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 3.6, dt = 0.001560461886949412 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.95 us    (1.3%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 295.34 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.268836805555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7214626480512168e-27,1.7738173026042347e-27,2.608989711981769e-17)
    sum a = (-2.0544867917477313e-25,-4.658479022975207e-25,-1.3441023111028885e-16)
    sum e = 1.2368349081669615e-09
    sum de = 7.406773761914338e-13
Info: cfl dt = 0.0015604667607774108 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9849e+04 | 11520 |      1 | 3.859e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.555767652678442 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.6015604618869497, dt = 0.0015604667607774108 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.8%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.5%)
   LB compute        : 303.16 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.268663194444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2481296696805822e-27,8.231122510520824e-28,2.588187267400977e-17)
    sum a = (1.005972150464411e-25,2.1720628639694125e-25,-1.3215928972815214e-16)
    sum e = 1.236836063527601e-09
    sum de = 7.399015693962607e-13
Info: cfl dt = 0.001560472228046387 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9976e+04 | 11520 |      1 | 3.843e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.617431917762255 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.6031209286477273, dt = 0.001560472228046387 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.0%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.66 us    (0.5%)
   LB compute        : 304.77 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.36 us    (61.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2684895833333325
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8199310049588795e-27,1.675348945696572e-27,2.5677398032404745e-17)
    sum a = (-6.504459068970962e-26,9.059192851374947e-26,-1.29852622475707e-16)
    sum e = 1.236837217518106e-09
    sum de = 7.389881773603507e-13
Info: cfl dt = 0.0015604779331341958 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0073e+04 | 11520 |      1 | 3.831e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.664957695321053 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.6046814008757737, dt = 0.0015604779331341958 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.7%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 331.75 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.268229166666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.058127347196782e-27,1.7037799501558267e-27,2.5476565625532292e-17)
    sum a = (-1.0934217595462797e-25,4.185602074904485e-25,-1.2749166285406454e-16)
    sum e = 1.2368383699801533e-09
    sum de = 7.379382130500375e-13
Info: cfl dt = 0.0015604837645841578 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0070e+04 | 11520 |      1 | 3.831e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.663663034571703 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.606241878808908, dt = 0.0015604837645841578 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.7%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 1.39 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 310.98 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.26796875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.266505806709125e-27,2.6059442623873004e-27,2.5279459068202645e-17)
    sum a = (3.3223362308472043e-25,-2.1405113834109715e-25,-1.2507782226207714e-16)
    sum e = 1.2368395207014967e-09
    sum de = 7.367529291232905e-13
Info: cfl dt = 0.0015604896114916318 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9294e+04 | 11520 |      1 | 3.933e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.285160256212416 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.607802362573492, dt = 0.0015604896114916318 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.6%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 333.87 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.267708333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3951995359029399e-27,1.8119564549276252e-27,2.508615980544806e-17)
    sum a = (-8.030593781995767e-25,2.759714390163879e-26,-1.2261251599476396e-16)
    sum e = 1.236840669471948e-09
    sum de = 7.354335949024358e-13
Info: cfl dt = 0.0015604953678030878 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0091e+04 | 11520 |      1 | 3.828e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.674035123382085 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.609362852184984, dt = 0.0015604953678030878 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (1.9%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 305.61 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (63.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.267708333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.515042965950299e-27,2.0435651254005786e-27,2.48967470846202e-17)
    sum a = (-1.991279814760876e-25,-4.007124710813681e-26,-1.2009717219742294e-16)
    sum e = 1.2368418160832294e-09
    sum de = 7.339814945581244e-13
Info: cfl dt = 0.0015605009354441974 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6962e+04 | 11520 |      1 | 4.273e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.1482461431799 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 3.610923347552787, dt = 0.0015605009354441974 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.7%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 325.34 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (73.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2671875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.382596091518162e-27,1.9048772987700676e-27,2.4711297926262943e-17)
    sum a = (3.474109253920304e-25,1.5750828478362114e-25,-1.1753322212488833e-16)
    sum e = 1.2368429603290078e-09
    sum de = 7.323979280126675e-13
Info: cfl dt = 0.001560506227230081 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9992e+04 | 11520 |      1 | 3.841e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.625885845644115 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.6124838484882313, dt = 0.001560506227230081 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.8%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 305.39 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (61.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2671875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.446799981328789e-27,2.298057287267566e-27,2.4529887124507602e-17)
    sum a = (-1.4416391546501666e-25,3.629488160485797e-25,-1.149221050872261e-16)
    sum e = 1.2368441020049254e-09
    sum de = 7.306842119803512e-13
Info: cfl dt = 0.0015605111694612542 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9828e+04 | 11520 |      1 | 3.862e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.545762887881557 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.6140443547154613, dt = 0.0015605111694612542 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.6%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 1.36 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 323.27 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.266927083333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.0247814988114435e-27,3.0240880596782908e-27,2.4352587228000606e-17)
    sum a = (5.101714915299323e-25,6.317143823128128e-26,-1.1226526670630588e-16)
    sum e = 1.236845240908636e-09
    sum de = 7.288416775077725e-13
Info: cfl dt = 0.0015605157041246446 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7639e+04 | 11520 |      1 | 4.168e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.47859147251364 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.6156048658849227, dt = 0.0015605157041246446 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.7%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 1.43 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 302.89 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (62.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.266927083333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7117545001870813e-27,2.8854002330477798e-27,2.417946852927585e-17)
    sum a = (-1.8795251640620102e-25,-4.872588756923056e-25,-1.095641572352567e-16)
    sum e = 1.2368463768398422e-09
    sum de = 7.268716702609945e-13
Info: cfl dt = 0.0015605197906349156 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7180e+04 | 11520 |      1 | 4.238e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.254775981602148 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.6171653815890474, dt = 0.0015605197906349156 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.1%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 295.81 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.266319444444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.5549764861005875e-27,1.6899111674927758e-27,2.4010599055429308e-17)
    sum a = (1.8297015623449992e-25,-4.0649436657359412e-25,-1.0682023057202637e-16)
    sum e = 1.2368475096003253e-09
    sum de = 7.247755513537127e-13
Info: cfl dt = 0.0015605234070616345 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8658e+04 | 11520 |      1 | 4.020e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.975270493817513 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.6187259013796824, dt = 0.0015605234070616345 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.9%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 297.89 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (63.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.266059027777779
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9579253924562382e-27,1.1545761566990036e-27,2.384604456114305e-17)
    sum a = (-4.562267810445956e-25,2.870182711270747e-25,-1.040349466294218e-16)
    sum e = 1.2368486389939925e-09
    sum de = 7.225546938308799e-13
Info: cfl dt = 0.0015605265508058697 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0080e+04 | 11520 |      1 | 3.830e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.669107610037777 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.620286424786744, dt = 0.0015605265508058697 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (2.0%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 276.23 us  (87.5%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.266059027777779
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.180805303770768e-27,2.117763112647902e-27,2.368586851524639e-17)
    sum a = (9.445840643238148e-25,4.281275005306627e-25,-1.0120976826080768e-16)
    sum e = 1.2368497648268996e-09
    sum de = 7.202104864546831e-13
Info: cfl dt = 0.0015605292387046537 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8036e+04 | 11520 |      1 | 4.109e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.672253517995184 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.62184695133755, dt = 0.0015605292387046537 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.1%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 279.90 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.265798611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.296427329025196e-28,2.9034296505097464e-27,2.3530132095565014e-17)
    sum a = (1.9482588509400913e-25,-1.137760257720054e-27,-9.834615990312654e-17)
    sum e = 1.236850886907297e-09
    sum de = 7.17744329651667e-13
Info: cfl dt = 0.00156053150656071 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7133e+04 | 11520 |      1 | 4.246e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.231593256452946 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.623407480576255, dt = 0.00156053150656071 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.6%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 332.65 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 5.00 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (74.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.26545138888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.01470873098321e-28,2.578206697061198e-27,2.33788941867422e-17)
    sum a = (-8.626105440764519e-26,-4.872554951765314e-25,-9.544559001540931e-17)
    sum e = 1.2368520050456571e-09
    sum de = 7.151576375522558e-13
Info: cfl dt = 0.0015605334081115977 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9969e+04 | 11520 |      1 | 3.844e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.614661494675277 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.6249680120828156, dt = 0.0015605334081115977 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (2.3%)
   patch tree reduce : 1.70 us    (0.6%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 264.52 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.265190972222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.238829011377039e-27,1.4347255664926356e-27,2.32322113701992e-17)
    sum a = (-2.7594231457279552e-25,2.332409395125027e-25,-9.250952890074131e-17)
    sum e = 1.2368531190547118e-09
    sum de = 7.124518358124716e-13
Info: cfl dt = 0.0015605350134696952 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0120e+04 | 11520 |      1 | 3.825e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.688601834353564 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.626528545490927, dt = 0.0015605350134696952 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.6%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 331.94 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.265017361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.821317883225185e-27,2.3486783439877027e-27,2.309013792203968e-17)
    sum a = (-1.6261702423733928e-25,2.4708103113141964e-26,-8.953944544674603e-17)
    sum e = 1.2368542287494784e-09
    sum de = 7.096283630548481e-13
Info: cfl dt = 0.0015605364070790427 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7961e+04 | 11520 |      1 | 4.120e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.635747502745875 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.6280890805043966, dt = 0.0015605364070790427 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.8%)
   patch tree reduce : 2.23 us    (0.7%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 303.27 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.264583333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0016120578448488e-27,2.2245527391533952e-27,2.295272581708829e-17)
    sum a = (2.8181643746973083e-25,-1.1767176682205645e-25,-8.653681159147183e-17)
    sum e = 1.2368553339472903e-09
    sum de = 7.066886681439136e-13
Info: cfl dt = 0.0015605376852518887 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8469e+04 | 11520 |      1 | 4.046e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.883490329868595 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.629649616911476, dt = 0.0015605376852518887 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (2.0%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 297.46 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.264322916666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2013832981868009e-27,1.9395492554276954e-27,2.282002472121431e-17)
    sum a = (1.766286553618198e-25,-5.143272722549155e-26,-8.350309819491055e-17)
    sum e = 1.2368564344678188e-09
    sum de = 7.036342113955608e-13
Info: cfl dt = 0.0015605389533580273 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6788e+04 | 11520 |      1 | 4.300e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.063884430733971 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.6312101545967277, dt = 0.0015605389533580273 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (1.8%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.52 us    (0.4%)
   LB compute        : 324.43 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.264322916666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0249030387994757e-27,1.885461003041796e-27,2.2692081995804322e-17)
    sum a = (-8.952368552912796e-26,-1.0042368190336967e-25,-8.043977643582243e-17)
    sum e = 1.2368575301330987e-09
    sum de = 7.004664652404792e-13
Info: cfl dt = 0.0015605403227515924 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0081e+04 | 11520 |      1 | 3.830e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.669488896301837 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.6327706935500856, dt = 0.0015605403227515924 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (2.2%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.5%)
   LB compute        : 266.35 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.264322916666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3830643510727702e-27,1.6670276760987415e-27,2.2568942697598565e-17)
    sum a = (7.63032684555745e-26,-3.26190040999621e-25,-7.73483138128058e-17)
    sum e = 1.2368586207675507e-09
    sum de = 6.971869092085889e-13
Info: cfl dt = 0.0015605419075271788 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0138e+04 | 11520 |      1 | 3.822e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.697150708478858 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.634331233872837, dt = 0.0015605419075271788 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.7%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 315.42 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.264322916666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1199042000413757e-27,1.0269833561989334e-27,2.2450649588397694e-17)
    sum a = (-2.3201017173104856e-25,-5.094915744598762e-25,-7.423017950691987e-17)
    sum e = 1.2368597061979846e-09
    sum de = 6.937970366319e-13
Info: cfl dt = 0.0015605438212015405 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7229e+04 | 11520 |      1 | 4.231e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.278716441802139 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.6358917757803644, dt = 0.0015605438212015405 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.7%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 316.80 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (61.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.264322916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7474666155444376e-27,9.846835690766276e-29,2.2337243130104685e-17)
    sum a = (3.030190324050033e-25,1.345431409316581e-25,-7.108683839784305e-17)
    sum e = 1.2368607862536308e-09
    sum de = 6.902983474788096e-13
Info: cfl dt = 0.0015605461734195885 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9948e+04 | 11520 |      1 | 3.847e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.604765900910378 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.637452319601566, dt = 0.0015605461734195885 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (2.0%)
   patch tree reduce : 1.69 us    (0.6%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.5%)
   LB compute        : 272.04 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.263454861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.48769498978727e-28,7.912140509270649e-28,2.2228761497163752e-17)
    sum a = (-2.541884355266667e-25,-1.767836390080794e-26,-6.791975323382162e-17)
    sum e = 1.236861860766133e-09
    sum de = 6.866923512844688e-13
Info: cfl dt = 0.001560549066781928 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0154e+04 | 11520 |      1 | 3.820e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.70499668716922 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.639012865774985, dt = 0.001560549066781928 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (2.0%)
   patch tree reduce : 1.95 us    (0.7%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.5%)
   LB compute        : 279.72 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.263020833333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.645531062971012e-27,6.657015678264525e-28,2.2125240581002517e-17)
    sum a = (-7.305519955588794e-26,3.1161282358216294e-25,-6.473038326102893e-17)
    sum e = 1.2368629295695669e-09
    sum de = 6.829805672319314e-13
Info: cfl dt = 0.0015605525938864975 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9913e+04 | 11520 |      1 | 3.851e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.587963327969236 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.640573414841767, dt = 0.0015605525938864975 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.9%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 299.05 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (62.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.262500000000001
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6427573064384018e-27,1.4007470489681605e-27,2.2026713997639037e-17)
    sum a = (5.716081184098492e-25,-1.6619343656657357e-25,-6.152018429982715e-17)
    sum e = 1.236863992500442e-09
    sum de = 6.791645223852093e-13
Info: cfl dt = 0.0015605568346719345 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9958e+04 | 11520 |      1 | 3.845e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.609456786915452 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.6421339674356537, dt = 0.0015605568346719345 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (2.1%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 275.34 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (63.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.262239583333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.3611602483844483e-28,7.620896073346575e-28,2.1933213095781175e-17)
    sum a = (-1.7580207591510197e-25,3.0212102872757075e-26,-5.829060774594304e-17)
    sum e = 1.2368650493976998e-09
    sum de = 6.752457519013739e-13
Info: cfl dt = 0.00156056185413849 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8045e+04 | 11520 |      1 | 4.108e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.676873667941248 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.643694524270326, dt = 0.00156056185413849 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.9%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 293.82 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.261979166666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1098493326106637e-27,9.909245212750005e-28,2.1844766965762252e-17)
    sum a = (-9.620913221185174e-26,-3.5255069624695713e-25,-5.504309908236697e-17)
    sum e = 1.236866100102721e-09
    sum de = 6.712257975703157e-13
Info: cfl dt = 0.0015605677005120942 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9949e+04 | 11520 |      1 | 3.847e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.60526833585656 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.645255086124464, dt = 0.0015605677005120942 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.9%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 271.32 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.261458333333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2034636155862586e-27,1.1580433523647661e-28,2.1761402452261495e-17)
    sum a = (-1.496968663084409e-25,-1.472937529925007e-25,-5.1779101828793966e-17)
    sum e = 1.2368671444593174e-09
    sum de = 6.671062095087349e-13
Info: cfl dt = 0.0015605744039040906 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0230e+04 | 11520 |      1 | 3.811e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.742335610010713 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.646815653824976, dt = 0.0015605744039040906 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.7%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 327.60 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.261024305555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4576090578866698e-27,5.96357654511197e-29,2.1683144155677054e-17)
    sum a = (4.782094950046647e-26,-2.1987568034001202e-26,-4.850005139216658e-17)
    sum e = 1.2368681823137357e-09
    sum de = 6.628885448479841e-13
Info: cfl dt = 0.0015605819755022325 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0120e+04 | 11520 |      1 | 3.825e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.688877639199275 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.64837622822888, dt = 0.0015605819755022325 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.6%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 322.66 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.261024305555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.231547900478937e-27,1.2620592223376495e-28,2.161001445076009e-17)
    sum a = (-6.710840423779826e-25,-3.5327152622586924e-25,-4.520737727239386e-17)
    sum e = 1.2368692135146537e-09
    sum de = 6.585743673733905e-13
Info: cfl dt = 0.001560590407315422 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9988e+04 | 11520 |      1 | 3.842e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.624420057545667 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.649936810204382, dt = 0.001560590407315422 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (2.0%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.37 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.5%)
   LB compute        : 269.80 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.260590277777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.8441406046252027e-27,-6.795703504895035e-28,2.1542033495349335e-17)
    sum a = (-3.053503747706622e-25,4.785211958950168e-25,-4.1902503400108886e-17)
    sum e = 1.2368702379131723e-09
    sum de = 6.541652470017222e-13
Info: cfl dt = 0.0015605996724734777 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8739e+04 | 11520 |      1 | 4.009e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.015355807761317 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.6514974006116976, dt = 0.0015605996724734777 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (2.1%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.56 us    (0.5%)
   LB compute        : 291.82 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.260590277777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.0549461011035794e-27,6.740228374242831e-28,2.1479219239509237e-17)
    sum a = (2.6966461010036544e-25,-1.7172604069043125e-25,-3.858684672560613e-17)
    sum e = 1.23687125536282e-09
    sum de = 6.496627599697871e-13
Info: cfl dt = 0.0015606097260735562 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0124e+04 | 11520 |      1 | 3.824e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.690860771079516 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.653058000284171, dt = 0.0015606097260735562 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.9%)
   patch tree reduce : 1.77 us    (0.6%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 300.27 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 us    (63.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.260590277777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1611030584699365e-27,-8.459957424461166e-29,2.1421587437487623e-17)
    sum a = (-3.6506727260036074e-25,1.5037955713502959e-25,-3.5261816624830395e-17)
    sum e = 1.236872265719545e-09
    sum de = 6.450684877043979e-13
Info: cfl dt = 0.0015606205065425804 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0016e+04 | 11520 |      1 | 3.838e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.638518397882235 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.6546186100102447, dt = 0.0015606205065425804 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (2.1%)
   patch tree reduce : 1.68 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 267.35 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.260590277777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.2300394822245994e-27,4.084356494268547e-28,2.136915166055958e-17)
    sum a = (3.224172987158129e-25,-2.439057733407141e-25,-3.1928815567069956e-17)
    sum e = 1.236873268841714e-09
    sum de = 6.403840185179916e-13
Info: cfl dt = 0.0015606189732144996 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7681e+04 | 11520 |      1 | 4.162e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.499668981260443 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.6561792305167873, dt = 0.0015606189732144996 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (2.0%)
   patch tree reduce : 1.95 us    (0.7%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 278.39 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.260590277777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2040962847253947e-27,-2.7876253152732695e-28,2.132192372010853e-17)
    sum a = (-9.779572094850478e-27,1.061086692767376e-25,-2.858926481073194e-17)
    sum e = 1.2368742645818167e-09
    sum de = 6.356109840289572e-13
Info: cfl dt = 0.0015606162771639176 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0148e+04 | 11520 |      1 | 3.821e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.702858366489831 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.6577398494900017, dt = 0.0015606162771639176 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (2.0%)
   patch tree reduce : 1.98 us    (0.7%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.5%)
   LB compute        : 273.61 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.260590277777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4797383401535352e-27,1.6989258762237588e-28,2.1279912731268455e-17)
    sum a = (3.28726901388368e-25,-2.5557045971903978e-26,-2.5244553390750477e-17)
    sum e = 1.2368752528022132e-09
    sum de = 6.307509905250294e-13
Info: cfl dt = 0.0015606139446262106 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0167e+04 | 11520 |      1 | 3.819e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.712046059655 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 3.6593004657671657, dt = 0.0015606139446262106 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (1.9%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.60 us    (0.5%)
   LB compute        : 290.12 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.260590277777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6958054001245724e-27,6.240952198372991e-29,2.1243125634725717e-17)
    sum a = (5.553296347590929e-25,1.4386434975949475e-26,-2.1896059036150403e-17)
    sum e = 1.2368762333687046e-09
    sum de = 6.258056427751715e-13
Info: cfl dt = 0.0015606119502408393 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0182e+04 | 11520 |      1 | 3.817e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.719582431011515 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.660861079711792, dt = 0.0015606119502408393 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.7%)
   patch tree reduce : 1.57 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 289.10 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.260329861111112
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.650081286932999e-28,8.182581771200145e-29,2.1211567236941338e-17)
    sum a = (-4.056216734245216e-25,2.4058107941681417e-25,-1.8545147854313325e-17)
    sum e = 1.236877206149572e-09
    sum de = 6.207765510193278e-13
Info: cfl dt = 0.0015606102671014573 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0068e+04 | 11520 |      1 | 3.831e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.664138274462525 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.6624216916620327, dt = 0.0015606102671014573 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.7%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 305.74 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2601562500000005
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0192947557402393e-27,6.594606156280795e-28,2.1185240224750637e-17)
    sum a = (-4.8459606942099977e-26,1.1606229459400937e-25,-1.5193177438741605e-17)
    sum e = 1.2368781710155943e-09
    sum de = 6.156653271272832e-13
Info: cfl dt = 0.0015606088677588667 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7107e+04 | 11520 |      1 | 4.250e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.219816289833057 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.663982301929134, dt = 0.0015606088677588667 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.85 us    (2.0%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 326.63 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.259982638888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.85807015728227e-27,7.294979680764875e-28,2.1164145177011643e-17)
    sum a = (4.797357545367335e-25,-5.722308267514201e-25,-1.1841494587707397e-17)
    sum e = 1.2368791278400424e-09
    sum de = 6.104735886753095e-13
Info: cfl dt = 0.0015606077251858683 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6514e+04 | 11520 |      1 | 4.345e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.930492731543564 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.665542910796893, dt = 0.0015606077251858683 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.8%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 301.05 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.259982638888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.830375461552663e-28,-7.05227598416148e-28,2.114828058206726e-17)
    sum a = (-3.080298235811637e-25,1.3472794246064326e-25,-8.491437087963946e-18)
    sum e = 1.2368800764986968e-09
    sum de = 6.052029548765811e-13
Info: cfl dt = 0.001560606813732463 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0092e+04 | 11520 |      1 | 3.828e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.675611367854072 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.6671035185220786, dt = 0.001560606813732463 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (1.8%)
   patch tree reduce : 1.91 us    (0.5%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 328.25 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.259982638888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7634157156069465e-27,7.697174377993356e-29,2.1137642850297918e-17)
    sum a = (1.7452094711660262e-25,-1.0910692672870596e-25,-5.14432717398359e-18)
    sum e = 1.2368810168698489e-09
    sum de = 5.998550482192739e-13
Info: cfl dt = 0.001560606109992769 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0062e+04 | 11520 |      1 | 3.832e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.661096183125329 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.668664125335811, dt = 0.001560606109992769 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.9%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 275.35 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.259722222222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1448680088348677e-27,-2.870838011251576e-28,2.1132226343162803e-17)
    sum a = (1.625130083673664e-25,2.8610431834957962e-25,-1.801479866618818e-18)
    sum e = 1.236881948834306e-09
    sum de = 5.944314936982656e-13
Info: cfl dt = 0.0015606055935732822 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6976e+04 | 11520 |      1 | 4.270e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.15580517622241 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.670224731445804, dt = 0.0015606055935732822 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.8%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 292.76 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.259722222222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.99043836132287e-28,4.6183046267960135e-28,2.1132023377551862e-17)
    sum a = (2.36400681602604e-25,9.837647622252004e-26,1.5358036919850525e-18)
    sum e = 1.236882872275397e-09
    sum de = 5.889339185839143e-13
Info: cfl dt = 0.001560605247733734 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7625e+04 | 11520 |      1 | 4.170e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.472419761624412 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.671785337039377, dt = 0.001560605247733734 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (2.0%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 297.59 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2594618055555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.756992453426525e-28,4.542026322149233e-28,2.1137024252537325e-17)
    sum a = (-2.4501562267332474e-25,5.799751549904678e-26,4.866234570208304e-18)
    sum e = 1.2368837870789818e-09
    sum de = 5.833639511181482e-13
Info: cfl dt = 0.0015606050598798392 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0039e+04 | 11520 |      1 | 3.835e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.649876102947784 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.673345942287111, dt = 0.0015606050598798392 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.8%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 312.78 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2594618055555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2079709699517502e-27,5.311743759948569e-28,2.1147217266759586e-17)
    sum a = (1.5727442243596544e-25,-3.672158937544339e-26,8.18853555508103e-18)
    sum e = 1.2368846931334486e-09
    sum de = 5.777232220022981e-13
Info: cfl dt = 0.0015606050218921737 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0099e+04 | 11520 |      1 | 3.827e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.679032777445322 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.674906547346991, dt = 0.0015606050218921737 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (2.2%)
   patch tree reduce : 1.84 us    (0.7%)
   gen split merge   : 981.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.5%)
   LB compute        : 259.01 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.258767361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.7644987439031705e-28,3.9803406242956635e-28,2.116258873639146e-17)
    sum a = (-2.441689334917455e-25,-1.9937103189225756e-25,1.1501443894596371e-17)
    sum e = 1.2368855903297291e-09
    sum de = 5.720133623959269e-13
Info: cfl dt = 0.0015606051302808066 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0145e+04 | 11520 |      1 | 3.822e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.701198745875791 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.676467152368883, dt = 0.0015606051302808066 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (1.8%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 322.20 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.258246527777779
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3424981617833458e-27,-6.587671764949269e-29,2.118312301946539e-17)
    sum a = (-3.401575520592547e-25,2.3784511531696073e-25,1.4803709357689704e-17)
    sum e = 1.2368864785612919e-09
    sum de = 5.662360047531503e-13
Info: cfl dt = 0.0015606053861618927 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7410e+04 | 11520 |      1 | 4.203e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.367731494507051 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.678027757499164, dt = 0.0015606053861618927 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (2.1%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.4%)
   LB compute        : 264.41 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (63.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.258246527777779
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9447500489263393e-27,6.871981809541816e-28,2.1208802534155308e-17)
    sum a = (3.9814847988653655e-26,2.087376609833157e-25,1.809409488577188e-17)
    sum e = 1.2368873577241564e-09
    sum de = 5.603927816212489e-13
Info: cfl dt = 0.0015606057950575628 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7027e+04 | 11520 |      1 | 4.262e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.180537517586384 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.679588362885326, dt = 0.0015606057950575628 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (2.1%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 259.91 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2578125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6198738150443678e-27,9.826032516771699e-28,2.1239607780264892e-17)
    sum a = (-4.724088766558436e-26,-5.988989355744178e-25,2.1371380572420776e-17)
    sum e = 1.2368882277168889e-09
    sum de = 5.544853262873813e-13
Info: cfl dt = 0.0015606063665269268 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0124e+04 | 11520 |      1 | 3.824e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.6909656573836 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 3.6811489686803838, dt = 0.0015606063665269268 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (2.1%)
   patch tree reduce : 1.91 us    (0.7%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 260.33 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (62.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.25720486111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.754401006875963e-27,-5.672332109187897e-28,2.12755173682813e-17)
    sum a = (5.013904717868215e-25,-3.9463621067711887e-26,2.4634356272096793e-17)
    sum e = 1.236889088440607e-09
    sum de = 5.485152702138998e-13
Info: cfl dt = 0.0015606071136418948 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0181e+04 | 11520 |      1 | 3.817e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.718911836926456 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.6827095750469105, dt = 0.0015606071136418948 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (2.1%)
   patch tree reduce : 1.75 us    (0.6%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 267.54 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.257031250000001
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.45043158657908e-28,-2.2675459654088537e-28,2.1316508030235813e-17)
    sum a = (-4.677184543591997e-25,-1.6054676170531234e-26,2.7881831312406977e-17)
    sum e = 1.236889939798977e-09
    sum de = 5.424842464141747e-13
Info: cfl dt = 0.0015606080523257921 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0188e+04 | 11520 |      1 | 3.816e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.722546462914142 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.6842701821605526, dt = 0.0015606080523257921 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (2.2%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (0.5%)
   LB compute        : 263.34 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.256597222222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0335102579698666e-27,-2.017907877473934e-28,2.1362554657034432e-17)
    sum a = (-4.847212351845338e-25,9.854047457751062e-26,3.11126268953879e-17)
    sum e = 1.2368907816982227e-09
    sum de = 5.363938861535059e-13
Info: cfl dt = 0.0015606092005790268 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0141e+04 | 11520 |      1 | 3.822e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.69956581270012 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.6858307902128784, dt = 0.0015606092005790268 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.7%)
   patch tree reduce : 2.22 us    (0.6%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 332.11 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.256336805555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.792826108771914e-27,1.5255660929356203e-29,2.141363031166096e-17)
    sum a = (-2.891956700051737e-25,-2.9733127127510276e-25,3.4325581139878816e-17)
    sum e = 1.236891614047113e-09
    sum de = 5.302458191404628e-13
Info: cfl dt = 0.0015606105776162702 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6872e+04 | 11520 |      1 | 4.287e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.10528639559738 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.6873913994134573, dt = 0.0015606105776162702 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (1.8%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.4%)
   LB compute        : 325.85 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (61.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.256336805555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.0885778990614784e-27,-7.579289725357422e-28,2.146970625968416e-17)
    sum a = (-3.8646715096901517e-25,3.846680231380509e-26,3.7519547251641225e-17)
    sum e = 1.2368924367569728e-09
    sum de = 5.240416744284284e-13
Info: cfl dt = 0.0015606122029471238 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9753e+04 | 11520 |      1 | 3.872e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.510363721078628 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.6889520099910738, dt = 0.0015606122029471238 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.7%)
   patch tree reduce : 1.80 us    (0.6%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 299.09 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.255902777777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.805940682307796e-27,-4.57669827880686e-28,2.153075199159621e-17)
    sum a = (2.3434082065757432e-26,1.7944471168155233e-26,4.069339424222222e-17)
    sum e = 1.2368932497416672e-09
    sum de = 5.177830783797123e-13
Info: cfl dt = 0.0015606140954305958 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0234e+04 | 11520 |      1 | 3.810e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.745089452871152 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.6905126221940208, dt = 0.0015606140954305958 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (2.1%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 295.77 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.255381944444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.417614767742365e-27,-4.333994582203466e-28,2.1596735248442212e-17)
    sum a = (1.719122290976827e-25,-4.343830149508319e-25,4.38460091357774e-17)
    sum e = 1.2368940529176055e-09
    sum de = 5.114716565559277e-13
Info: cfl dt = 0.0015606162723356112 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0112e+04 | 11520 |      1 | 3.826e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.685538486498535 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.6920732362894513, dt = 0.0015606162723356112 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (1.7%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.61 us    (0.4%)
   LB compute        : 341.10 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.255381944444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.0296355727435112e-27,-1.4423533969573137e-27,2.166762205135099e-17)
    sum a = (-2.4450802522785706e-25,7.744510266820183e-26,4.6976294093134676e-17)
    sum e = 1.2368948462037379e-09
    sum de = 5.051090317357579e-13
Info: cfl dt = 0.0015606187484395698 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6648e+04 | 11520 |      1 | 4.323e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.995832451903816 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.6936338525617867, dt = 0.0015606187484395698 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.8%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.4%)
   LB compute        : 309.82 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (63.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.255381944444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.731742695060473e-27,-9.361428297559487e-28,2.1743376723467175e-17)
    sum a = (5.874656845067818e-25,3.3682765734185613e-26,5.0083169089839584e-17)
    sum e = 1.236895629521543e-09
    sum de = 4.986968234634297e-13
Info: cfl dt = 0.0015606215351958155 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0123e+04 | 11520 |      1 | 3.824e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.690687430445173 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.6951944713102263, dt = 0.0015606215351958155 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.9%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 270.62 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.255381944444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1857201476968523e-27,-9.215806079597452e-28,2.182396191936968e-17)
    sum a = (-2.7140791608111096e-25,2.138683304496198e-25,5.3165570148357014e-17)
    sum e = 1.2368964027950262e-09
    sum de = 4.922366496510591e-13
Info: cfl dt = 0.001560624639997673 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6418e+04 | 11520 |      1 | 4.361e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.883667507745479 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.696755092845422, dt = 0.001560624639997673 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (2.0%)
   patch tree reduce : 1.80 us    (0.6%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 305.37 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.255381944444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.268525354114566e-27,-4.438010452176349e-28,2.1909338648838625e-17)
    sum a = (4.020275783973919e-25,-1.199345453934249e-25,5.622245060989406e-17)
    sum e = 1.2368971659507163e-09
    sum de = 4.857301241136215e-13
Info: cfl dt = 0.0015606280655654317 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8625e+04 | 11520 |      1 | 4.024e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.960303851600631 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.6983157174854195, dt = 0.0015606280655654317 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.8%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 307.51 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.255381944444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1156827952484443e-27,-8.758136251716765e-28,2.1999466304719115e-17)
    sum a = (-4.818084441057265e-26,2.691714015169107e-26,5.925278353576308e-17)
    sum e = 1.2368979189176455e-09
    sum de = 4.791788582674089e-13
Info: cfl dt = 0.0015606318094754398 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7875e+04 | 11520 |      1 | 4.133e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.59439635699773 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.699876345550985, dt = 0.00012365444901529798 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.9%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 300.06 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (60.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.255121527777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.463095800957874e-27,-7.7595838999770866e-28,2.2009157786278507e-17)
    sum a = (-2.344170989622211e-26,9.471719791687401e-26,5.947996465619669e-17)
    sum e = 1.2368979730476458e-09
    sum de = 4.78636158516726e-13
Info: cfl dt = 0.001560632265205829 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0935e+04 | 11520 |      1 | 3.724e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1953793733764304 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 2065                                                    [SPH][rank=0]
Info: time since start : 945.3474264680001 (s)                                        [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[-6.14506765e-27 -8.37728973e-17 -8.03990922e-14 ... -1.14932232e-16
 -1.71292972e-12  7.51080673e-10]
(11520, 3)
[[-6.14506765e-27 -8.37728973e-17 -8.03990922e-14 -2.91161274e-13
  -1.96649562e-11]
 [ 1.92608242e-06 -1.97360691e-23 -2.71850568e-18  1.28404872e-08
   1.00383929e-09]
 [ 2.45700455e-05  2.14484735e-05  1.18486125e-06 -2.21937833e-12
  -1.53354893e-10]
 ...
 [ 3.41048023e-05  3.85457922e-05  2.37091110e-05 -1.80306620e-12
   1.03560952e-07]
 [ 1.01237897e-05  2.51967889e-06 -2.47296815e-17  8.45894121e-10
  -5.45721671e-12]
 [-4.26554545e-34 -5.29222548e-26 -1.14932232e-16 -1.71292972e-12
   7.51080673e-10]]
compute original rho
Info: Dumping state to _to_trash/dusty_settle/dump/0000037.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.89 us   (72.8%)
Info: dump to _to_trash/dusty_settle/dump/0000037.sham                      [Shamrock Dump][rank=0]
              - took 1.05 ms, bandwidth = 2.82 GB/s
Info: evolve_until (target_time = 3.80s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 3.7, dt = 0.001560632265205829 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (0.8%)
   patch tree reduce : 971.00 ns  (0.3%)
   gen split merge   : 641.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 347.58 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 4.54 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.255121527777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.5064357467799088e-27,-6.268689763699094e-28,2.2101998184198574e-17)
    sum a = (4.646978334951872e-25,-4.072047949655089e-26,6.249235123911673e-17)
    sum e = 1.2368987199996673e-09
    sum de = 4.720602172966166e-13
Info: cfl dt = 0.0015606361967867197 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4492e+04 | 11520 |      1 | 4.704e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.944591019088275 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.701560632265206, dt = 0.0015606361967867197 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.6%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 322.24 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (72.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2546875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.415309270764364e-27,-7.7110431606564075e-28,2.2201876623490775e-17)
    sum a = (4.181437972909905e-28,1.5828736364971803e-25,6.546422579219652e-17)
    sum e = 1.2368994515826024e-09
    sum de = 4.654210337497516e-13
Info: cfl dt = 0.0015606405715092812 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9589e+04 | 11520 |      1 | 3.893e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.430498453341864 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.703121268461993, dt = 0.0015606405715092812 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (1.9%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 310.09 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (62.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.254166666666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.76306899604037e-27,-4.146766016252277e-28,2.230636175768399e-17)
    sum a = (3.4971522363149635e-25,3.280136992399206e-25,6.840654466370319e-17)
    sum e = 1.2369001727568636e-09
    sum de = 4.587420767828787e-13
Info: cfl dt = 0.0015606452218451942 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9846e+04 | 11520 |      1 | 3.860e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.555690010282165 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.704681909033502, dt = 0.0015606452218451942 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (1.8%)
   patch tree reduce : 1.93 us    (0.5%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 333.81 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.253645833333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.354493906227962e-28,2.3091523133980068e-28,2.2415416055880198e-17)
    sum a = (1.4582331531065072e-26,-7.560757564523921e-26,7.13183084249e-17)
    sum e = 1.2369008834787543e-09
    sum de = 4.5202490957631037e-13
Info: cfl dt = 0.001560650123627267 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0230e+04 | 11520 |      1 | 3.811e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.74331697149933 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.7062425542553474, dt = 0.001560650123627267 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.7%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 311.92 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.253385416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1899415524897837e-27,-1.9832359208163062e-28,2.2528991097859795e-17)
    sum a = (1.4576645330173221e-25,1.45629152353368e-25,7.419858122466759e-17)
    sum e = 1.2369015836899151e-09
    sum de = 4.4527112173952214e-13
Info: cfl dt = 0.001560655247135076 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9762e+04 | 11520 |      1 | 3.871e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.514885035095038 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.707803204378975, dt = 0.001560655247135076 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.8%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 297.20 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.253211805555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.785873817042867e-28,2.2952835307349557e-28,2.2647037051981332e-17)
    sum a = (-1.3884523731373656e-25,-1.2512762438171272e-26,7.704644722356369e-17)
    sum e = 1.2369022733344638e-09
    sum de = 4.3848229785313267e-13
Info: cfl dt = 0.0015606605582786895 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8045e+04 | 11520 |      1 | 4.108e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.677735398597243 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.70936385962611, dt = 0.0015606605582786895 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.81 us    (1.9%)
   patch tree reduce : 2.19 us    (0.6%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.73 us    (0.5%)
   LB compute        : 338.94 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.66 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (72.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2528645833333325
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2939574224626669e-27,6.171608285057736e-29,2.2769502671927888e-17)
    sum a = (-2.8321233044476693e-25,-7.271437422194346e-26,7.986100865879495e-17)
    sum e = 1.236902952358971e-09
    sum de = 4.316600176415126e-13
Info: cfl dt = 0.0015606660192869562 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9417e+04 | 11520 |      1 | 3.916e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.347086166622915 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.710924520184389, dt = 0.0015606660192869562 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.6%)
   patch tree reduce : 1.95 us    (0.5%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 357.37 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.252604166666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8660447073135247e-27,-9.569460037505254e-29,2.289633532191221e-17)
    sum a = (-1.613979582412571e-26,5.474372572651172e-26,8.26413877809981e-17)
    sum e = 1.2369036207124465e-09
    sum de = 4.248058555589629e-13
Info: cfl dt = 0.0015606715895196408 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8643e+04 | 11520 |      1 | 4.022e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.96938706768399 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.7124851862036756, dt = 0.0015606715895196408 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (1.9%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 311.46 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.25234375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6670276760987415e-27,1.0124211344027299e-28,2.3027481009565124e-17)
    sum a = (1.1166311673328958e-25,1.630875226891833e-25,8.538672643029895e-17)
    sum e = 1.2369042783463317e-09
    sum de = 4.1792138058500125e-13
Info: cfl dt = 0.0015606772263847934 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7247e+04 | 11520 |      1 | 4.228e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.28882964964949 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.714045857793195, dt = 0.0015606772263847934 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.7%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 315.48 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2523437500000005
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3906921815374483e-27,3.883259145654306e-28,2.3162884414939333e-17)
    sum a = (-3.458825855425622e-25,-5.253572884666234e-25,8.809618789319812e-17)
    sum e = 1.2369049252144952e-09
    sum de = 4.110081550514185e-13
Info: cfl dt = 0.0015606828863055405 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0170e+04 | 11520 |      1 | 3.818e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.71437420237674 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.71560653501958, dt = 0.0015606828863055405 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.8%)
   patch tree reduce : 2.19 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 321.44 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2523437500000005
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.295283530734956e-27,-9.195002905602875e-28,2.3302488925063494e-17)
    sum a = (-6.321391137818688e-27,4.0724068044064953e-25,9.076895071757115e-17)
    sum e = 1.2369055612732155e-09
    sum de = 4.0406773555871143e-13
Info: cfl dt = 0.001560688525744401 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0030e+04 | 11520 |      1 | 3.836e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.645936663775297 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.7171672179058857, dt = 0.001560688525744401 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.7%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 320.53 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2523437500000005
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0102800470092558e-27,4.229978712230583e-28,2.3446236652588776e-17)
    sum a = (1.859082578416673e-25,6.339680594955587e-26,9.340421789682593e-17)
    sum e = 1.2369061864811803e-09
    sum de = 3.971016727407957e-13
Info: cfl dt = 0.0015606941022244737 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9809e+04 | 11520 |      1 | 3.865e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.538237717329931 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.71872790643163, dt = 0.0015606941022244737 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.7%)
   patch tree reduce : 1.80 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 302.15 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.252083333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5994173606163673e-27,2.4547745313600435e-28,2.3594068480200886e-17)
    sum a = (3.4383208602583007e-25,1.3898288498166734e-25,9.600120968068088e-17)
    sum e = 1.2369068007994744e-09
    sum de = 3.90111509293192e-13
Info: cfl dt = 0.0015606995753260642 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0206e+04 | 11520 |      1 | 3.814e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.731967796103023 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.7202886005338547, dt = 0.0015606995753260642 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.9%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.4%)
   LB compute        : 305.91 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.251909722222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.444640993537793e-28,5.297874977285518e-28,2.3745924082212363e-17)
    sum a = (-4.2656214836746244e-26,-2.96592585238512e-25,9.855916947943295e-17)
    sum e = 1.2369074041915707e-09
    sum de = 3.8309878346795375e-13
Info: cfl dt = 0.001560704907628698 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0211e+04 | 11520 |      1 | 3.813e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.734577349902338 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.721849300109181, dt = 0.001560704907628698 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.16 us    (0.5%)
   patch tree reduce : 2.18 us    (0.1%)
   gen split merge   : 1.10 us    (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.1%)
   LB compute        : 1.43 ms    (98.5%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (0.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.82 us    (77.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2515625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.324122024754803e-27,-2.4270369660339414e-28,2.3901741965149574e-17)
    sum a = (-1.119637225975112e-25,-5.483473961273799e-26,1.0107735807631497e-16)
    sum e = 1.2369079966233255e-09
    sum de = 3.7606502389741645e-13
Info: cfl dt = 0.0015607100655723632 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9927e+04 | 11520 |      1 | 3.849e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.596086234412073 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.7234100050168095, dt = 0.0015607100655723632 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (2.1%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.54 us    (0.5%)
   LB compute        : 300.45 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.32 us    (60.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2515625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.53770127776579e-27,-1.8861544421749486e-28,2.4061459489947618e-17)
    sum a = (5.931914114292224e-25,-3.6208097697343928e-25,1.0355505901834142e-16)
    sum e = 1.2369085780629634e-09
    sum de = 3.6901175353703996e-13
Info: cfl dt = 0.001560715020209847 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0236e+04 | 11520 |      1 | 3.810e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.746813889534737 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.724970715082382, dt = 0.001560715020209847 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.7%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 327.55 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.251302083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.616856978535693e-29,-9.853770082097801e-28,2.4225012912361193e-17)
    sum a = (3.391111524073275e-25,2.531585050541519e-25,1.0599157522093075e-16)
    sum e = 1.2369091484810772e-09
    sum de = 3.6194048651947417e-13
Info: cfl dt = 0.001560719747830337 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0168e+04 | 11520 |      1 | 3.819e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.713561023407523 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.726531430102592, dt = 0.001560719747830337 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (1.8%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 321.62 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.251302083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.420102574702416e-28,-1.2204528743484962e-28,2.4392337410578024e-17)
    sum a = (9.686581907094721e-26,1.2469474500284225e-25,1.0838623092250518e-16)
    sum e = 1.236909707850607e-09
    sum de = 3.548527299120592e-13
Info: cfl dt = 0.0015607242304347528 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9739e+04 | 11520 |      1 | 3.874e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.504217116174319 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.728092149850422, dt = 0.0015607242304347528 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.6%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 330.73 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.251302083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3126195090637697e-28,-1.5255660929356203e-29,2.45633671206758e-17)
    sum a = (-3.30954227884054e-26,-6.834258720698317e-26,1.1073837158370894e-16)
    sum e = 1.2369102561468417e-09
    sum de = 3.477499817192439e-13
Info: cfl dt = 0.0015607284560519529 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0251e+04 | 11520 |      1 | 3.808e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.754079307732928 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.7296528740808568, dt = 0.0015607284560519529 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (2.2%)
   patch tree reduce : 1.94 us    (0.7%)
   gen split merge   : 1.08 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 265.77 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.251128472222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.761031548237407e-29,-2.5310528360068246e-28,2.4738035169918342e-17)
    sum a = (-2.934696821023595e-25,-4.954192674112448e-25,1.1304736165365223e-16)
    sum e = 1.2369107933474e-09
    sum de = 3.406337322780148e-13
Info: cfl dt = 0.0015607324188868965 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0310e+04 | 11520 |      1 | 3.801e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.783264066329767 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.7312136025369087, dt = 0.0015607324188868965 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.90 us    (2.6%)
   patch tree reduce : 4.44 us    (1.5%)
   gen split merge   : 1.93 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 2.90 us    (1.0%)
   LB compute        : 271.62 us  (90.6%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.250954861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.081461197747904e-28,-1.3605275792453122e-27,2.491627370536969e-17)
    sum a = (-1.6914228648030483e-25,-8.807162398430651e-26,1.1531258914096772e-16)
    sum e = 1.2369113194322244e-09
    sum de = 3.3350546266228347e-13
Info: cfl dt = 0.0015607361192986054 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0334e+04 | 11520 |      1 | 3.798e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.794858610338768 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.7327743349557956, dt = 0.0015607361192986054 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.6%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 1.20 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 324.20 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.250954861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.385126768074707e-28,-1.1760727698267327e-27,2.5098013935170356e-17)
    sum a = (4.503478040737283e-25,-4.347447301386626e-26,1.175334627787428e-16)
    sum e = 1.2369118343835668e-09
    sum de = 3.263666457045024e-13
Info: cfl dt = 0.0015607395636126147 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0276e+04 | 11520 |      1 | 3.805e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.766333937957576 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.734335071075094, dt = 0.0015607395636126147 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (1.9%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 311.48 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (63.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.25078125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.254249081890922e-28,-1.2218397526148012e-27,2.5283186159455008e-17)
    sum a = (4.348029790258474e-25,1.8193138441303738e-25,1.1970941118093156e-16)
    sum e = 1.23691233818598e-09
    sum de = 3.192187440090975e-13
Info: cfl dt = 0.0015607427637740771 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9888e+04 | 11520 |      1 | 3.854e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.577396899538964 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.7358958106387066, dt = 0.0015607427637740771 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (1.9%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.4%)
   LB compute        : 319.44 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.25078125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0925133542818498e-27,-7.662502421335728e-28,2.5471719801107886e-17)
    sum a = (7.811141099526979e-26,-1.1433771146985897e-25,1.2183988389314248e-16)
    sum e = 1.2369128308262986e-09
    sum de = 3.120632114643346e-13
Info: cfl dt = 0.0015607457368566233 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8158e+04 | 11520 |      1 | 4.091e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.733478443574906 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.7374565534024806, dt = 0.0015607457368566233 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (1.7%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 1.37 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 328.42 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.250607638888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.541722472179151e-28,-1.1448680088348677e-27,2.566354344042435e-17)
    sum a = (-8.962007356863616e-27,-4.029474254075188e-25,1.2392435382166146e-16)
    sum e = 1.236913312293633e-09
    sum de = 3.049014922495997e-13
Info: cfl dt = 0.0015607485044439164 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7252e+04 | 11520 |      1 | 4.227e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.291714344350384 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.7390172991393373, dt = 0.0015607485044439164 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.6%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 332.33 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.250434027777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.591710859760153e-28,-2.0387110514685105e-27,2.5858584854073156e-17)
    sum a = (1.165164972262243e-25,1.838324477965751e-25,1.2596231367987567e-16)
    sum e = 1.2369137825793496e-09
    sum de = 2.977350196192547e-13
Info: cfl dt = 0.0015607510919058937 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0314e+04 | 11520 |      1 | 3.800e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.785244923494433 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.740578047643781, dt = 0.0015607510919058937 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (2.0%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 291.08 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.250434027777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.170178537194936e-27,-1.2731542484680903e-27,2.605677104408358e-17)
    sum a = (2.0542943623882815e-25,2.2033681736355845e-25,1.2795327705749034e-16)
    sum e = 1.2369142416770563e-09
    sum de = 2.9056521810384896e-13
Info: cfl dt = 0.0015607535275945189 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0285e+04 | 11520 |      1 | 3.804e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.770972134527371 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.742138798735687, dt = 0.0015607535275945189 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (2.3%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 992.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.71 us    (0.6%)
   LB compute        : 260.36 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.25017361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5387414364655188e-27,-8.674923555738459e-28,2.6258028271753225e-17)
    sum a = (-1.5791377331673207e-25,2.1233106257131224e-25,1.2989677979775422e-16)
    sum e = 1.2369146895825857e-09
    sum de = 2.833935004866093e-13
Info: cfl dt = 0.0015607558419848677 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6729e+04 | 11520 |      1 | 4.310e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.03647479942789 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.7436995522632817, dt = 0.0015607558419848677 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.8%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 288.35 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.249739583333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0207424040005605e-27,-5.824888718481459e-28,2.6462282094019587e-17)
    sum a = (-7.531664325692504e-25,-9.439994951345672e-26,1.3179237724205975e-16)
    sum e = 1.2369151262939843e-09
    sum de = 2.76221269661385e-13
Info: cfl dt = 0.0015607580667927618 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0296e+04 | 11520 |      1 | 3.803e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.776262319805653 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.7452603081052667, dt = 0.0015607580667927618 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (2.0%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 309.45 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (64.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.249479166666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.341500872680112e-28,-9.257412427586604e-28,2.6669457392407668e-17)
    sum a = (-4.478932029021515e-25,2.06929865163187e-25,1.3363964754540324e-16)
    sum e = 1.2369155518114854e-09
    sum de = 2.6904991820839254e-13
Info: cfl dt = 0.0015607602340940048 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9962e+04 | 11520 |      1 | 3.845e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.613548240758108 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.7468210661720596, dt = 0.0015607602340940048 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 22.98 us   (7.4%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 275.06 us  (88.2%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.249479166666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0935535129815787e-27,-3.8971279283173573e-28,2.687947841092782e-17)
    sum a = (2.116698683578513e-25,4.0730326332241657e-25,1.3543819006086027e-16)
    sum e = 1.236915966137503e-09
    sum de = 2.618808267095686e-13
Info: cfl dt = 0.0015607623754756992 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8395e+04 | 11520 |      1 | 4.057e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.849177163679649 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.7483818264061535, dt = 0.0015607623754756992 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (2.0%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.5%)
   LB compute        : 291.86 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.249131944444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.3472914657213973e-28,4.132897233589226e-28,2.7092268789057093e-17)
    sum a = (-2.7757345677375364e-25,4.053214142798666e-25,1.3718762428998508e-16)
    sum e = 1.2369163692766031e-09
    sum de = 2.5471536484580046e-13
Info: cfl dt = 0.001560764521246967 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0335e+04 | 11520 |      1 | 3.798e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.795556952972166 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.749942588781629, dt = 0.001560764521246967 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (1.8%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 306.13 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.39 us    (63.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.248697916666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0557610802247645e-27,1.0526406041255779e-27,2.7307751591343536e-17)
    sum a = (-2.544326994613197e-25,2.2515275214330296e-25,1.3888759105090607e-16)
    sum e = 1.236916761235492e-09
    sum de = 2.475548917307551e-13
Info: cfl dt = 0.0015607666997313225 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0267e+04 | 11520 |      1 | 3.806e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.762193517614497 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.751503353302876, dt = 0.0015607666997313225 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (1.9%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 311.76 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.248350694444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.432991968659754e-27,1.2433363657425305e-27,2.7525849342339586e-17)
    sum a = (-1.831823486092446e-25,-3.2232021723717153e-25,1.4053775208474078e-16)
    sum e = 1.2369171420229911e-09
    sum de = 2.40400753492459e-13
Info: cfl dt = 0.0015607689366641548 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0376e+04 | 11520 |      1 | 3.792e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.815528352899872 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.753064120002607, dt = 0.0015607689366641548 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.6%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 336.05 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.248177083333332
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.66529407826586e-27,3.120476099186496e-28,2.7746484058417743e-17)
    sum a = (5.464907128483639e-26,-9.23862022707817e-26,1.4213779113612394e-16)
    sum e = 1.236917511650024e-09
    sum de = 2.332542860793353e-13
Info: cfl dt = 0.0015607712547112374 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0257e+04 | 11520 |      1 | 3.807e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.757569065366525 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.7546248889392713, dt = 0.0015607712547112374 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.6%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 320.21 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (72.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.248177083333332
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.39797329243555e-27,3.3562454044583644e-28,2.79695772826679e-17)
    sum a = (-4.49690077055933e-26,-7.527801869720845e-25,1.4368741040348137e-16)
    sum e = 1.2369178701295902e-09
    sum de = 2.2611681231025197e-13
Info: cfl dt = 0.0015607736731226018 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0129e+04 | 11520 |      1 | 3.824e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.694997823491034 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.7561856601939825, dt = 0.0015607736731226018 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.7%)
   patch tree reduce : 2.17 us    (0.6%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.4%)
   LB compute        : 328.94 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.247916666666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5262595320687728e-27,-1.343885040049651e-27,2.819505011059341e-17)
    sum a = (2.1462703954118036e-25,1.2170758257700432e-25,1.4518633531436254e-16)
    sum e = 1.2369182174767493e-09
    sum de = 2.1898964358922748e-13
Info: cfl dt = 0.001560776207529538 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8645e+04 | 11520 |      1 | 4.022e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.971125726916668 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.757746433867105, dt = 0.001560776207529538 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (1.9%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 324.57 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.24765625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0210891235671368e-27,-4.521223148154656e-28,2.84228232296954e-17)
    sum a = (1.1061949083789498e-25,6.079380880348447e-26,1.466343114163258e-16)
    sum e = 1.2369185537085984e-09
    sum de = 2.1187407999557562e-13
Info: cfl dt = 0.001560778869888385 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8642e+04 | 11520 |      1 | 4.022e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.970076614531013 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.7593072100746343, dt = 0.001560778869888385 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.6%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 331.87 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.24765625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.191535709937111e-28,-3.987275015627189e-28,2.865281694786766e-17)
    sum a = (-1.0134439571241298e-25,-7.294979680764875e-27,1.4803110257426283e-16)
    sum e = 1.2369188788442563e-09
    sum de = 2.0477140593715258e-13
Info: cfl dt = 0.0015607816685701222 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0165e+04 | 11520 |      1 | 3.819e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.712740480425069 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.760867988944523, dt = 0.0015607816685701222 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (2.0%)
   patch tree reduce : 1.75 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 294.10 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.39 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.24765625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2433363657425305e-27,-4.805533192747204e-28,2.888495122022309e-17)
    sum a = (7.312870410400211e-26,-1.1151194700226232e-25,1.4937649636529418e-16)
    sum e = 1.2369191929048317e-09
    sum de = 1.9768289808495393e-13
Info: cfl dt = 0.0015607846085872556 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0170e+04 | 11520 |      1 | 3.818e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.715013104370136 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.762428770613093, dt = 0.0015607846085872556 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.2%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 281.33 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.247135416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.843368495100513e-28,-7.496077029379116e-28,2.91191456895808e-17)
    sum a = (-1.8506364897748747e-25,5.036587111913635e-26,1.5067029734368895e-16)
    sum e = 1.236919495913422e-09
    sum de = 1.9060981690521942e-13
Info: cfl dt = 0.0015607876919494622 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0071e+04 | 11520 |      1 | 3.831e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.666901797521914 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.7639895552216807, dt = 0.0015607876919494622 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (2.0%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 1.10 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 287.69 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (71.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.247135416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4659303274845006e-27,-5.464300369242131e-28,2.935531970762987e-17)
    sum a = (1.641382563356927e-25,-2.5553717464064844e-25,1.5191233422234229e-16)
    sum e = 1.2369197878950698e-09
    sum de = 1.835534117225425e-13
Info: cfl dt = 0.001560790918130567 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8005e+04 | 11520 |      1 | 4.114e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.659365873432412 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.76555034291363, dt = 0.001560790918130567 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.7%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 294.37 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 18.25 us   (95.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.246788194444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.503583319855761e-28,-1.1753793306935802e-27,2.959339237709811e-17)
    sum a = (2.998371869425328e-25,2.907638826047982e-25,1.5310245148895217e-16)
    sum e = 1.2369200688767626e-09
    sum de = 1.765149177432535e-13
Info: cfl dt = 0.0015607942846269337 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6840e+04 | 11520 |      1 | 4.292e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.09130207277975 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.7671111338317607, dt = 0.0015607942846269337 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.8%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 305.25 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.246527777777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.727235340694981e-28,-2.919378750572255e-28,2.9833282570517875e-17)
    sum a = (2.912479031197387e-26,3.3818471772543567e-25,1.5424051674429174e-16)
    sum e = 1.2369203388873982e-09
    sum de = 1.6949555893694253e-13
Info: cfl dt = 0.001560797787587188 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0324e+04 | 11520 |      1 | 3.799e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.790391390335838 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.7686719281163876, dt = 0.001560797787587188 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.7%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 332.50 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (59.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.245486111111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.485103543236707e-28,2.7321501846210654e-28,3.0074908970652184e-17)
    sum a = (1.2799308823968237e-25,2.5039046939439018e-25,1.5532641450226437e-16)
    sum e = 1.2369205979577728e-09
    sum de = 1.6249654408257458e-13
Info: cfl dt = 0.0015608014224867117 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9868e+04 | 11520 |      1 | 3.857e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.567948935450893 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.7702327259039747, dt = 0.0015608014224867117 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.8%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 314.75 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.245312499999999
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.614265531985131e-28,5.908101414459766e-28,3.0318190092729186e-17)
    sum a = (-4.974593653409796e-26,1.413922392498059e-27,1.5636005222164814e-16)
    sum e = 1.2369208461205552e-09
    sum de = 1.555190704892283e-13
Info: cfl dt = 0.0015608051848214023 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6009e+04 | 11520 |      1 | 4.429e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.685822358714804 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.7717935273264613, dt = 0.0015608051848214023 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.9%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 297.25 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.245312499999999
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.53855912648347e-28,4.084356494268547e-28,3.0563044324532603e-17)
    sum a = (-5.093736898072403e-25,4.144533142243525e-25,1.573413528612277e-16)
    sum e = 1.23692108341027e-09
    sum de = 1.4856432047912355e-13
Info: cfl dt = 0.001560809070794373 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0345e+04 | 11520 |      1 | 3.796e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.80061023064826 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.773354332511283, dt = 0.001560809070794373 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (1.8%)
   patch tree reduce : 1.89 us    (0.5%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 334.11 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.245052083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.627848365075622e-27,1.3743963619083632e-27,3.080938994495334e-17)
    sum a = (-6.814565049316785e-26,-1.7123161858849347e-25,1.5827026118036583e-16)
    sum e = 1.2369213098632715e-09
    sum de = 1.416334639376892e-13
Info: cfl dt = 0.0015608130779683782 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9961e+04 | 11520 |      1 | 3.845e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.613353218915828 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.774915141582077, dt = 0.0015608130779683782 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.8%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.5%)
   LB compute        : 309.41 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.244357638888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4236305403621946e-27,6.421246372992656e-28,3.105714516269587e-17)
    sum a = (1.2012515447515019e-25,1.966385349880699e-26,1.5914674090786876e-16)
    sum e = 1.2369215255177309e-09
    sum de = 1.3472765655405696e-13
Info: cfl dt = 0.0015608172058598035 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0275e+04 | 11520 |      1 | 3.805e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.766558289092767 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.7764759546600457, dt = 0.0015608172058598035 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.7%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.37 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 329.31 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.243923611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0509070062926966e-27,8.224188119189297e-28,3.130622814465303e-17)
    sum a = (-3.6746726544020175e-26,-3.711965810982962e-25,1.5997077351233016e-16)
    sum e = 1.2369217304136047e-09
    sum de = 1.2784803991773002e-13
Info: cfl dt = 0.0015608214564508218 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0216e+04 | 11520 |      1 | 3.813e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.737826365626614 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.7780367718659056, dt = 0.0015608214564508218 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (1.9%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 302.27 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.58 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.243489583333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.248883878807751e-27,-4.160634798915328e-29,3.1556557042534845e-17)
    sum a = (2.5883447771878884e-25,-1.1778757115729293e-25,1.6074235997922687e-16)
    sum e = 1.236921924592624e-09
    sum de = 1.2099574231985022e-13
Info: cfl dt = 0.0015608258345998867 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8827e+04 | 11520 |      1 | 3.996e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.060798954997068 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.7795975933223565, dt = 0.0015608258345998867 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.8%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 303.67 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.243315972222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.077994002082141e-28,-5.408825238589926e-29,3.1808050025041255e-17)
    sum a = (2.180519354198208e-25,6.787174203557259e-26,1.6146151968911198e-16)
    sum e = 1.2369221080982652e-09
    sum de = 1.1417187695873532e-13
Info: cfl dt = 0.0015608303483340283 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0310e+04 | 11520 |      1 | 3.801e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.78394962565471 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.7811584191569563, dt = 0.0015608303483340283 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.7%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (0.5%)
   LB compute        : 306.31 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.243315972222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.1967544038332767e-28,2.212070834756649e-28,3.206062530652411e-17)
    sum a = (8.379414469145498e-26,1.1658861489607216e-25,1.6212828978652423e-16)
    sum e = 1.236922280975731e-09
    sum de = 1.0737754383621158e-13
Info: cfl dt = 0.0015608350090107802 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6954e+04 | 11520 |      1 | 4.274e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.14725793523761 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.7827192495052904, dt = 0.0015608350090107802 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (2.0%)
   patch tree reduce : 1.72 us    (0.6%)
   gen split merge   : 1.08 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 287.83 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.243315972222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.798026902270558e-28,4.6044358441329625e-28,3.231420117471217e-17)
    sum a = (-2.75044310895363e-25,-1.2426082546527203e-25,1.6274272626685666e-16)
    sum e = 1.236922443271927e-09
    sum de = 1.006138280870509e-13
Info: cfl dt = 0.0015608398313418197 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9103e+04 | 11520 |      1 | 3.958e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.19554645243622 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.784280084514301, dt = 0.0015608398313418197 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (2.0%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 290.07 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.243315972222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0096473778701196e-27,6.448983938318758e-29,3.25686960210457e-17)
    sum a = (5.215272507744385e-25,6.631843837731086e-26,1.6330490268902857e-16)
    sum e = 1.2369225950354426e-09
    sum de = 9.388180029237916e-14
Info: cfl dt = 0.0015608448332756525 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0316e+04 | 11520 |      1 | 3.800e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.786916000744531 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.785840924345643, dt = 0.0015608448332756525 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.8%)
   patch tree reduce : 2.35 us    (0.7%)
   gen split merge   : 1.44 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 318.26 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.243142361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.503887169825843e-28,3.162082447175649e-28,3.2824028368431263e-17)
    sum a = (-3.0442740728443617e-25,-1.9277469213814388e-25,1.6381490984032693e-16)
    sum e = 1.2369227363165243e-09
    sum de = 8.718251712037536e-14
Info: cfl dt = 0.001560850035741599 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7644e+04 | 11520 |      1 | 4.167e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.48386174646156 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.787401769178919, dt = 0.001560850035741599 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (1.9%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 305.55 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.243142361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.85117863554724e-28,-1.8722856595118975e-28,3.308011689729085e-17)
    sum a = (-1.421172298635169e-25,2.1454313340606887e-26,1.6427285690503436e-16)
    sum e = 1.2369228671670554e-09
    sum de = 8.05170192347992e-14
Info: cfl dt = 0.0015608554622617427 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0129e+04 | 11520 |      1 | 3.824e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.695826233780215 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.7889626192146606, dt = 0.0015608554622617427 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (1.8%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 320.76 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.242881944444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.620896073346575e-28,-1.040158699728832e-29,3.333688047661057e-17)
    sum a = (-5.765568467835924e-25,1.774046137518175e-25,1.6467886970559016e-16)
    sum e = 1.2369229876405322e-09
    sum de = 7.388633278923881e-14
Info: cfl dt = 0.0015608611384425734 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9843e+04 | 11520 |      1 | 3.860e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.55649721101642 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.7905234746769225, dt = 0.0015608611384425734 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (1.8%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 312.35 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.242881944444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9995317404453915e-27,4.139831624920751e-28,3.359423818832822e-17)
    sum a = (-2.2330716389041745e-25,9.046121523715021e-26,1.6503309066507803e-16)
    sum e = 1.2369230977920327e-09
    sum de = 6.729147066748775e-14
Info: cfl dt = 0.0015608670913625916 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6836e+04 | 11520 |      1 | 4.293e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.089601251569231 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.7920843358153653, dt = 0.0015608670913625916 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (1.9%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 313.37 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.242274305555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0688756537606468e-27,4.944221019377715e-28,3.385210935349467e-17)
    sum a = (1.6111954242929634e-25,-3.357646151507333e-25,1.6533568039215602e-16)
    sum e = 1.2369231976782104e-09
    sum de = 6.073342823279974e-14
Info: cfl dt = 0.0015608733488754623 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9662e+04 | 11520 |      1 | 3.884e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.46844980176742 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.793645202906728, dt = 0.0015608733488754623 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (1.7%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.20 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 338.84 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 10.40 us   (2.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.242274305555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5498364625959596e-27,-3.578145927067182e-28,3.4110413561686083e-17)
    sum a = (-1.7912018216723693e-25,1.0749346722564325e-25,1.655868142483776e-16)
    sum e = 1.23692328735725e-09
    sum de = 5.421318870438317e-14
Info: cfl dt = 0.0015608799388518542 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0027e+04 | 11520 |      1 | 3.837e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.64650509489081 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.7952060762556035, dt = 0.0015608799388518542 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.6%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 336.74 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.242274305555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.051886394998409e-27,1.574106832256299e-28,3.436907069225018e-17)
    sum a = (1.5189853555620024e-25,-2.415366385422984e-25,1.657866846925928e-16)
    sum e = 1.236923366888862e-09
    sum de = 4.773171712411493e-14
Info: cfl dt = 0.0015608868883854538 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0330e+04 | 11520 |      1 | 3.798e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.794103946738653 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.7967669561944555, dt = 0.0015608868883854538 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.6%)
   patch tree reduce : 1.88 us    (0.5%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 337.29 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.242013888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5709863561571126e-27,-4.958089802040766e-28,3.4628000941620834e-17)
    sum a = (4.840267558926815e-25,4.225422817125771e-25,1.6593550073521162e-16)
    sum e = 1.2369234363342407e-09
    sum de = 4.128996556210907e-14
Info: cfl dt = 0.0015608942229898052 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8860e+04 | 11520 |      1 | 3.992e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.077358239515952 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.798327843082841, dt = 0.0015608942229898052 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.8%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 310.97 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.241753472222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.58911941320959e-28,6.705556417585203e-28,3.4887124848590437e-17)
    sum a = (-4.343498165523322e-25,-1.4177085701650718e-25,1.6603348641542834e-16)
    sum e = 1.236923495756054e-09
    sum de = 3.4888870460822493e-14
Info: cfl dt = 0.0015609019658127034 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0312e+04 | 11520 |      1 | 3.801e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.78535165120886 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.7998887373058308, dt = 0.00011126269416905643 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.7%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 326.46 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.241493055555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3317498552194811e-27,2.1011205734522404e-28,3.490567465423024e-17)
    sum a = (-3.1123212549806216e-25,-2.775913128314323e-25,1.6603816462934628e-16)
    sum e = 1.2369234946329275e-09
    sum de = 3.4454685477847814e-14
Info: cfl dt = 0.0015609027527091852 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0860e+04 | 11520 |      1 | 3.733e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.072996461194232 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 2130                                                    [SPH][rank=0]
Info: time since start : 973.887911926 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[-7.94588844e-28 -3.70939771e-17 -5.81289913e-14 ... -3.93599337e-17
 -1.11801397e-12 -1.83351176e-11]
(11520, 3)
[[-7.94588844e-28 -3.70939771e-17 -5.81289913e-14 -2.55891810e-13
  -1.17969164e-11]
 [ 1.66542777e-06 -2.35684721e-25 -4.65014985e-19  1.36163828e-08
   2.01416226e-09]
 [ 2.42682886e-05  2.04279465e-05 -8.26832327e-09 -7.96355186e-13
  -1.01972180e-10]
 ...
 [ 3.39464535e-05  3.78850271e-05  2.10060798e-05 -4.95728194e-13
   3.08951416e-08]
 [ 9.82337984e-06  1.68930422e-06 -2.57696159e-18  2.92269303e-09
  -3.81275723e-12]
 [-5.09901524e-37 -3.59231222e-27 -3.93599337e-17 -1.11801397e-12
  -1.83351176e-11]]
compute original rho
Info: Dumping state to _to_trash/dusty_settle/dump/0000038.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.10 us   (71.6%)
Info: dump to _to_trash/dusty_settle/dump/0000038.sham                      [Shamrock Dump][rank=0]
              - took 1.23 ms, bandwidth = 2.41 GB/s
Info: evolve_until (target_time = 3.90s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 3.8, dt = 0.0015609027527091852 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.31 us    (1.0%)
   patch tree reduce : 1.04 us    (0.3%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 321.19 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.241493055555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7869926461341332e-27,-1.7960073548651164e-28,3.516484434269493e-17)
    sum a = (4.100201578461083e-26,7.806113665811622e-26,1.6608233290785107e-16)
    sum e = 1.2369235483984026e-09
    sum de = 2.8077371576498693e-14
Info: cfl dt = 0.0015609107341729499 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5917e+04 | 11520 |      1 | 4.445e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.642074539870869 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.801560902752709, dt = 0.0015609107341729499 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.9%)
   patch tree reduce : 2.38 us    (0.7%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 297.30 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (58.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.241493055555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4721712796828735e-27,1.6711883108976567e-28,3.542411851011171e-17)
    sum a = (1.5550164529206091e-25,-1.4011700468393833e-25,1.6607581238589698e-16)
    sum e = 1.2369235872474496e-09
    sum de = 2.1763532506569834e-14
Info: cfl dt = 0.0015609193828709227 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0237e+04 | 11520 |      1 | 3.810e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.74909990403014 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.803121813486882, dt = 0.0015609193828709227 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (2.2%)
   patch tree reduce : 1.66 us    (0.6%)
   gen split merge   : 1.09 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.5%)
   LB compute        : 266.19 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.240972222222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1407073740359524e-27,-2.274480356740379e-28,3.5683344375655374e-17)
    sum a = (1.5916508423250586e-26,-1.953279350264116e-26,1.6601924832639944e-16)
    sum e = 1.2369236162908668e-09
    sum de = 1.5492995386163145e-14
Info: cfl dt = 0.0015609284877976001 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0056e+04 | 11520 |      1 | 3.833e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.660835643153813 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.8046827328697526, dt = 0.0015609284877976001 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (2.1%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 269.82 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.240451388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.212825043883818e-27,-1.5047629189410437e-28,3.594244440397701e-17)
    sum a = (1.5728586418166244e-25,-2.3504535481685733e-25,1.6591292357807707e-16)
    sum e = 1.2369236355803893e-09
    sum de = 9.266767963495562e-15
Info: cfl dt = 0.001560938056652598 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8723e+04 | 11520 |      1 | 4.011e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.01096913483735 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.8062436613575503, dt = 0.001560938056652598 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.6%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 315.19 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.240451388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.931496035004904e-28,-6.837309852884189e-28,3.62013412178325e-17)
    sum a = (1.9081364626958845e-25,-1.288007714700218e-25,1.6575713951377668e-16)
    sum e = 1.236923645185858e-09
    sum de = 3.085707938907967e-15
Info: cfl dt = 0.0015609480910768322 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0235e+04 | 11520 |      1 | 3.810e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.748396658949186 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.807804599414203, dt = 0.0015609480910768322 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (1.9%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 310.99 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (59.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.240104166666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.353350107937722e-28,-8.002287596580481e-28,3.645995792368484e-17)
    sum a = (2.9042756462521924e-25,-3.914450037863508e-25,1.655522106136094e-16)
    sum e = 1.2369236451783289e-09
    sum de = -3.049342347418121e-15
Info: cfl dt = 0.0015609585874228591 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0234e+04 | 11520 |      1 | 3.810e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.748102614936087 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.80936554750528, dt = 0.0015609585874228591 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (2.1%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 299.27 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.240104166666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.224491969159379e-29,-1.62056725417752e-27,3.6718218126794704e-17)
    sum a = (2.335842785633049e-25,1.555487991531153e-25,1.6529846690081951e-16)
    sum e = 1.2369236356301496e-09
    sum de = -9.137555687486016e-15
Info: cfl dt = 0.0015609695367497065 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0268e+04 | 11520 |      1 | 3.806e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.76486505868063 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.8109265060927027, dt = 0.0015609695367497065 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.8%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 312.80 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (61.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.239756944444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9644522942271713e-28,-9.756688603456443e-28,3.6976045956445027e-17)
    sum a = (8.697529671479232e-26,-8.062755488991383e-26,1.6499624853257628e-16)
    sum e = 1.2369236166149454e-09
    sum de = -1.5178120105596866e-14
Info: cfl dt = 0.0015609809249824277 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8301e+04 | 11520 |      1 | 4.071e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.80539046529956 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.8124874756294522, dt = 0.0015609809249824277 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (2.1%)
   patch tree reduce : 1.94 us    (0.7%)
   gen split merge   : 1.04 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.5%)
   LB compute        : 270.57 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.239756944444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0233946205451384e-28,-1.2572051484055815e-27,3.7233366076170926e-17)
    sum a = (8.601141631971026e-26,2.994512880649334e-25,1.646459129605985e-16)
    sum e = 1.2369235882075866e-09
    sum de = -2.1170239597090278e-14
Info: cfl dt = 0.0015609927332309928 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0349e+04 | 11520 |      1 | 3.796e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.80442855601554 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.814048456554435, dt = 0.0015609927332309928 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.9%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 274.32 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.239756944444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.365199343195332e-28,-5.01356493269297e-28,3.749010371635382e-17)
    sum a = (-2.962046060435132e-25,1.316785438726049e-25,1.642478286409403e-16)
    sum e = 1.2369235504841701e-09
    sum de = -2.7113133397218188e-14
Info: cfl dt = 0.0015610049382611118 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7150e+04 | 11520 |      1 | 4.243e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.244033589726332 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.815609449287666, dt = 0.0015610049382611118 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.7%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 301.54 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.239583333333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.3389094261295504e-28,-4.444944843507875e-28,3.774618468459522e-17)
    sum a = (-3.1772687641916903e-26,-1.5693845117595301e-25,1.6380237843004564e-16)
    sum e = 1.2369235035219948e-09
    sum de = -3.300603706262143e-14
Info: cfl dt = 0.001561017513105979 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0138e+04 | 11520 |      1 | 3.822e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.701545720848946 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.817170454225927, dt = 0.001561017513105979 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (1.9%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 321.41 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.239149305555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6469179412373172e-28,-8.827480165032021e-28,3.800153539098085e-17)
    sum a = (-5.065219213721504e-25,-4.321096614326829e-26,1.6330995605054963e-16)
    sum e = 1.2369234473995323e-09
    sum de = -3.884820099587911e-14
Info: cfl dt = 0.0015610304278006924 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8182e+04 | 11520 |      1 | 4.088e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.747825055241433 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.818731471739033, dt = 0.0015610304278006924 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (1.9%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 309.52 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.238888888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3168409138567012e-27,-8.75120186038524e-28,3.8256082861580843e-17)
    sum a = (5.522895975993521e-25,2.3952982569095487e-25,1.62770970083735e-16)
    sum e = 1.2369233821964144e-09
    sum de = -4.463889115312082e-14
Info: cfl dt = 0.0015610436502199107 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7772e+04 | 11520 |      1 | 4.148e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.547908532923909 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.8202925021668337, dt = 0.0015610436502199107 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.8%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.52 us    (0.5%)
   LB compute        : 312.75 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.238888888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.512269209417689e-28,-2.954050707229883e-28,3.850975476413227e-17)
    sum a = (1.9439872658798715e-26,1.893560372117018e-25,1.6218583837755573e-16)
    sum e = 1.2369233079934006e-09
    sum de = -5.03773901427695e-14
Info: cfl dt = 0.0015610571469934862 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8931e+04 | 11520 |      1 | 3.982e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.113413164118883 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.8218535458170537, dt = 0.0015610571469934862 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.04 us    (2.1%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 307.59 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.238888888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.60039674932208e-29,-3.8139152323390505e-29,3.8762479418187334e-17)
    sum a = (8.869571920414381e-26,-2.682153223120766e-25,1.6155499241309008e-16)
    sum e = 1.2369232248723583e-09
    sum de = -5.606299514606692e-14
Info: cfl dt = 0.0015610708844731992 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8588e+04 | 11520 |      1 | 4.030e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.946123689013596 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.8234146029640472, dt = 0.0015610708844731992 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.8%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 292.02 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.238715277777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.757868202541726e-28,-8.120172249216414e-28,3.9014185819714127e-17)
    sum a = (1.718258959256052e-25,5.240111497493909e-26,1.608788751819845e-16)
    sum e = 1.2369231329162374e-09
    sum de = -6.169501902144479e-14
Info: cfl dt = 0.0015610848297205018 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0098e+04 | 11520 |      1 | 3.827e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.68303003143048 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.8249756738485203, dt = 0.0015610848297205018 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (1.7%)
   patch tree reduce : 1.90 us    (0.5%)
   gen split merge   : 1.34 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 337.63 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.238715277777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.048236889350598e-28,-4.521223148154656e-28,3.9264803657795337e-17)
    sum a = (-1.0202015214767015e-25,-5.439821967841845e-26,1.6015794104633445e-16)
    sum e = 1.2369230322090511e-09
    sum de = -6.727279124387045e-14
Info: cfl dt = 0.001561098951486614 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0211e+04 | 11520 |      1 | 3.813e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.738261153019561 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.8265367586782406, dt = 0.001561098951486614 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (2.0%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.5%)
   LB compute        : 278.19 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 us    (62.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.238715277777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.192715309022394e-28,-6.28949293769367e-28,3.951426333191674e-17)
    sum a = (7.219602846991192e-26,4.756513980424649e-25,1.5939265538286144e-16)
    sum e = 1.2369229228358455e-09
    sum de = -7.279565616064347e-14
Info: cfl dt = 0.001561113221152762 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0094e+04 | 11520 |      1 | 3.828e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.681372127734518 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.8280978576297273, dt = 0.001561113221152762 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (1.9%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 317.87 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.238715277777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.772308884349897e-28,5.290940585953992e-28,3.976249597032947e-17)
    sum a = (1.1295430039921962e-25,1.7534301920895496e-25,1.5858349432411592e-16)
    sum e = 1.236922804882681e-09
    sum de = -7.826297419787926e-14
Info: cfl dt = 0.0015611276136022643 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0272e+04 | 11520 |      1 | 3.805e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.768359529766036 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.82965897085088, dt = 0.0015611276136022643 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (2.1%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.5%)
   LB compute        : 271.37 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.238715277777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.960109349446207e-28,5.769413587829254e-28,4.00094334463243e-17)
    sum a = (3.1127927935911655e-25,-2.1997900277085174e-25,1.5773094366686e-16)
    sum e = 1.236922678436606e-09
    sum de = -8.367412156105748e-14
Info: cfl dt = 0.0015611421079962527 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0351e+04 | 11520 |      1 | 3.796e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.806655963503527 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.831220098464482, dt = 0.0015611421079962527 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.7%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (0.5%)
   LB compute        : 313.90 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.238715277777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2218397526148012e-27,-9.916179604081531e-29,4.0255008394100385e-17)
    sum a = (-1.0410463018192672e-25,-1.2742221447331453e-25,1.5683550090558586e-16)
    sum e = 1.2369225435856322e-09
    sum de = -8.90284901744873e-14
Info: cfl dt = 0.0015611566884275122 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0240e+04 | 11520 |      1 | 3.810e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.752747570618556 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.832781240572478, dt = 0.0015611566884275122 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (1.8%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 320.89 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.238715277777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.298446876430637e-28,-2.1635300954359705e-28,4.0499154228597884e-17)
    sum a = (-1.9279618875127162e-25,7.64495841126697e-26,1.5589767395075184e-16)
    sum e = 1.2369224004187102e-09
    sum de = -9.432548720295557e-14
Info: cfl dt = 0.001561171344432238 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0269e+04 | 11520 |      1 | 3.806e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.767046857990096 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.834342397260906, dt = 0.001561171344432238 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (1.9%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 323.15 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.238715277777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.501867622420401e-28,5.374153281932299e-29,4.074180516244566e-17)
    sum a = (-1.4570127002321586e-25,2.795800962653138e-25,1.5491797710994206e-16)
    sum e = 1.2369222490257084e-09
    sum de = -9.956453645745225e-14
Info: cfl dt = 0.0015611860713409087 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0193e+04 | 11520 |      1 | 3.815e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.730148160823267 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.835903568605338, dt = 0.0015611860713409087 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.96 us    (2.2%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 300.98 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.238715277777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6157131802454524e-28,6.695154830587915e-28,4.0982896213199385e-17)
    sum a = (4.470581288260525e-25,-2.624993035375001e-25,1.5389693693183307e-16)
    sum e = 1.2369220894973822e-09
    sum de = -1.0474507712781849e-13
Info: cfl dt = 0.0015612008704562867 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8429e+04 | 11520 |      1 | 4.052e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.869755471238028 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.8374647546766787, dt = 0.0015612008704562867 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.9%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 302.05 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.238715277777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.327935939987142e-27,-1.9000232248379998e-28,4.122236322817152e-17)
    sum a = (7.164405091992248e-26,4.051924346011002e-25,1.5283508884889435e-16)
    sum e = 1.2369219219253495e-09
    sum de = -1.0986656456693711e-13
Info: cfl dt = 0.0015612157490514985 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0229e+04 | 11520 |      1 | 3.811e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.747892873315845 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.839025955547135, dt = 0.0015612157490514985 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (1.8%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 1.19 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 325.83 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.238715277777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1414008131691049e-27,9.6769431031439e-28,4.146014289688512e-17)
    sum a = (-2.4920954255063137e-25,-2.296219673564712e-25,1.5173297640406506e-16)
    sum e = 1.2369217464020715e-09
    sum de = -1.149284693042407e-13
Info: cfl dt = 0.0015612307201859714 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9039e+04 | 11520 |      1 | 3.967e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.167432213186087 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.8405871712961868, dt = 0.0015612307201859714 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (1.8%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 328.65 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.238715277777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.242399846633313e-28,1.3383375269844304e-28,4.1696172763235393e-17)
    sum a = (-9.471754463644059e-26,-8.768191119147477e-26,1.5059115251796689e-16)
    sum e = 1.2369215630208204e-09
    sum de = -1.1993027877888106e-13
Info: cfl dt = 0.001561245802343135 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7006e+04 | 11520 |      1 | 4.266e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.175894996512516 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.8421484020163725, dt = 0.001561245802343135 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (1.8%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.96 us    (0.6%)
   LB compute        : 327.42 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (61.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.238715277777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.743123670763474e-28,1.0158883300684926e-28,4.193039124274799e-17)
    sum a = (1.769517979978689e-26,-5.162467117754818e-25,1.494101780133709e-16)
    sum e = 1.2369213718756546e-09
    sum de = -1.248714948364e-13
Info: cfl dt = 0.0015612610188992378 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9022e+04 | 11520 |      1 | 3.969e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.159532859859128 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.8437096478187156, dt = 0.0015612610188992378 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.0%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.4%)
   LB compute        : 310.48 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.238715277777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.019051675764175e-28,-1.037731662762798e-27,4.216273763372398e-17)
    sum a = (-3.333348044281667e-25,-2.5380981775996542e-25,1.4819062154388994e-16)
    sum e = 1.2369211730614004e-09
    sum de = -1.2975163630975466e-13
Info: cfl dt = 0.0015612763974375712 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0327e+04 | 11520 |      1 | 3.799e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.7964710425727 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 3.8452709088376147, dt = 0.0015612763974375712 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (2.2%)
   patch tree reduce : 1.97 us    (0.7%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 266.68 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.238715277777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0109734861424085e-28,-1.2194127156487673e-27,4.2393152130431124e-17)
    sum a = (-2.2751321895255425e-25,-1.879982833889891e-26,1.4693305949598444e-16)
    sum e = 1.2369209666736155e-09
    sum de = -1.3457023680066432e-13
Info: cfl dt = 0.0015612919689278056 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0379e+04 | 11520 |      1 | 3.792e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.821805566533696 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.846832185235052, dt = 0.0015612919689278056 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (2.1%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.5%)
   LB compute        : 271.93 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.23845486111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.594034257135675e-28,-1.06269547155629e-27,4.2621575835271314e-17)
    sum a = (5.032058954374149e-25,-1.1835549780734488e-25,1.4563807581217718e-16)
    sum e = 1.2369207528085718e-09
    sum de = -1.393268467173201e-13
Info: cfl dt = 0.0015613077667942764 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0324e+04 | 11520 |      1 | 3.799e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.795106920828092 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.84839347720398, dt = 0.0015613077667942764 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (1.9%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 313.79 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (62.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.23845486111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.934963230670666e-28,-1.3359104900183965e-27,4.284795077033258e-17)
    sum a = (1.4673310745334686e-25,2.8367901498137856e-25,1.4430626260358461e-16)
    sum e = 1.2369205315632262e-09
    sum de = -1.4402103148082094e-13
Info: cfl dt = 0.0015613238258998805 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6788e+04 | 11520 |      1 | 4.300e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.0701954457557 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 3.8499547849707745, dt = 0.0015613238258998805 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.6%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 332.55 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (71.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.23828125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.262327271512688e-28,-5.717405652842813e-28,4.307221989125889e-17)
    sum a = (-1.973784345431437e-25,-1.7566200121020514e-26,1.4293821814062712e-16)
    sum e = 1.2369203030351947e-09
    sum de = -1.4865237241866712e-13
Info: cfl dt = 0.0015613401814759805 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9981e+04 | 11520 |      1 | 3.842e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.628005365111724 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.8515161087966745, dt = 0.0015613401814759805 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (2.0%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.07 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 271.65 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.36 us    (64.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.23828125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.794559706604795e-28,-8.27619605417574e-28,4.329432709448277e-17)
    sum a = (-7.336447340927398e-26,-2.975741483314895e-25,1.4153454632878899e-16)
    sum e = 1.2369200673227307e-09
    sum de = -1.5322046685176602e-13
Info: cfl dt = 0.0015613568680307103 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0303e+04 | 11520 |      1 | 3.802e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.785535725154705 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.8530774489781505, dt = 0.0015613568680307103 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (2.3%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.5%)
   LB compute        : 266.62 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.23828125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.232874008751226e-28,-1.5231390559695862e-27,4.35142172258315e-17)
    sum a = (1.2947202055091348e-25,-2.8765034089694324e-25,1.4009585894047725e-16)
    sum e = 1.236919824524699e-09
    sum de = -1.5772492653562175e-13
Info: cfl dt = 0.0015613739182676217 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0379e+04 | 11520 |      1 | 3.792e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.822886632147268 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.8546388058461813, dt = 0.0015613739182676217 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (2.1%)
   patch tree reduce : 1.90 us    (0.7%)
   gen split merge   : 981.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.5%)
   LB compute        : 252.18 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.23828125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.8456918924760355e-28,-1.9568852337565094e-27,4.373183609378263e-17)
    sum a = (9.127461934033815e-26,-7.2370913819292995e-25,1.3862277315764535e-16)
    sum e = 1.236919574740549e-09
    sum de = -1.6216537977243592e-13
Info: cfl dt = 0.001561391362047722 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0243e+04 | 11520 |      1 | 3.809e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.756235406061228 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.856200179764449, dt = 0.001561391362047722 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.7%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 317.35 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (63.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.23828125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.059210375493006e-28,-3.4429252961024335e-27,4.3947130475537424e-17)
    sum a = (-3.6705813635164174e-26,2.221792851403448e-25,1.3711591241761964e-16)
    sum e = 1.2369193180702937e-09
    sum de = -1.6654147013744127e-13
Info: cfl dt = 0.0015614092254265814 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8138e+04 | 11520 |      1 | 4.094e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.729598430672498 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.8577615711264968, dt = 0.0015614092254265814 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (2.1%)
   patch tree reduce : 1.95 us    (0.7%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.5%)
   LB compute        : 259.68 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.23828125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.561381847883488e-28,-2.3199006199618714e-27,4.416004812647312e-17)
    sum a = (-2.8945536296053935e-25,-1.1227889068352905e-25,1.3557590505567023e-16)
    sum e = 1.2369190546144817e-09
    sum de = -1.70852856276481e-13
Info: cfl dt = 0.0015614275297955854 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0365e+04 | 11520 |      1 | 3.794e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.81629009961318 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.8593229803519233, dt = 0.0015614275297955854 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.9%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1.07 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.5%)
   LB compute        : 272.35 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (60.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.238020833333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.153396557613721e-29,-2.7810376435083204e-27,4.4370537786134274e-17)
    sum a = (-2.6300759442210094e-25,-1.2644654561296889e-25,1.3400338514340645e-16)
    sum e = 1.2369187844741811e-09
    sum de = -1.7509921161921694e-13
Info: cfl dt = 0.0015614462911540995 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0329e+04 | 11520 |      1 | 3.798e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.798835613105265 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.860884407881719, dt = 0.0015614462911540995 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (2.1%)
   patch tree reduce : 1.93 us    (0.7%)
   gen split merge   : 1.06 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 270.98 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.238020833333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.805533192747204e-28,-2.9790145160233748e-27,4.457854918695864e-17)
    sum a = (-2.714744862378936e-25,5.348218658352393e-25,1.3239899169090873e-16)
    sum e = 1.2369185077509504e-09
    sum de = -1.792802262287812e-13
Info: cfl dt = 0.0015614655195348103 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0357e+04 | 11520 |      1 | 3.795e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.812762154392326 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.862445854172873, dt = 0.0015614655195348103 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (2.1%)
   patch tree reduce : 2.13 us    (0.8%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.5%)
   LB compute        : 259.93 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.238020833333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.167265340276773e-28,-1.6663342369655888e-27,4.478403306021246e-17)
    sum a = (-4.1338056388536556e-25,5.628645443799287e-26,1.307633679741452e-16)
    sum e = 1.2369182245468162e-09
    sum de = -1.8339560425028344e-13
Info: cfl dt = 0.0015614852186005986 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9925e+04 | 11520 |      1 | 3.850e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.60233152623819 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.8640073196924076, dt = 0.0015614852186005986 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (1.9%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 1.37 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 310.99 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.238020833333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6795095804954873e-27,-1.9461369271926447e-27,4.498694114141097e-17)
    sum a = (9.533470546494637e-26,-8.615773197680546e-26,1.2909716375224346e-16)
    sum e = 1.2369179349642518e-09
    sum de = -1.8744506486404216e-13
Info: cfl dt = 0.0015615053854257663 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5884e+04 | 11520 |      1 | 4.451e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.630266754060402 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.865568804911008, dt = 0.0015615053854257663 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.3%)
   patch tree reduce : 1.66 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.5%)
   LB compute        : 261.36 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.238020833333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1414008131691049e-27,-2.141686762741665e-27,4.518722618121121e-17)
    sum a = (-4.846043906905976e-25,1.9849487154751931e-25,1.2740103079094692e-16)
    sum e = 1.236917639106161e-09
    sum de = -1.9142834295797093e-13
Info: cfl dt = 0.001561526010468884 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8956e+04 | 11520 |      1 | 3.978e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.129519965812678 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.867130310296434, dt = 0.001561526010468884 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (2.2%)
   patch tree reduce : 1.72 us    (0.6%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.56 us    (0.5%)
   LB compute        : 265.69 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (63.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.238020833333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.302911361199634e-27,-1.6483048195036225e-27,4.5384841944114496e-17)
    sum a = (2.558991498681541e-25,1.3716850148977368e-25,1.2567562546730552e-16)
    sum e = 1.2369173370758415e-09
    sum de = -1.9534518783562923e-13
Info: cfl dt = 0.0015615470777392132 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0171e+04 | 11520 |      1 | 3.818e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.722574083277797 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.868691836306903, dt = 0.0015615470777392132 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (2.0%)
   patch tree reduce : 1.54 us    (0.5%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 289.40 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (72.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.238020833333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3522063096474816e-27,-1.4742515970823312e-27,4.557974321725848e-17)
    sum a = (-9.2019372969344e-26,-2.9980216826630864e-25,1.2392160875257818e-16)
    sum e = 1.2369170289769791e-09
    sum de = -1.99195363381565e-13
Info: cfl dt = 0.0015615685651522962 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0494e+04 | 11520 |      1 | 3.778e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.880741640594016 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.870253383384642, dt = 0.0015615685651522962 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (1.7%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 341.12 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.238020833333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7557878851422684e-27,-2.309152313398007e-27,4.5771885816199264e-17)
    sum a = (-7.56514356704111e-26,-2.210441252793741e-25,1.2213964439248763e-16)
    sum e = 1.2369167149136197e-09
    sum de = -2.029786488545235e-13
Info: cfl dt = 0.0015615904450649257 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8178e+04 | 11520 |      1 | 4.088e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.750374913993953 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.8718149519497946, dt = 0.0015615904450649257 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.8%)
   patch tree reduce : 1.77 us    (0.6%)
   gen split merge   : 941.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 302.29 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.238020833333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8598037551151516e-27,-2.608024579786758e-27,4.596122658809268e-17)
    sum a = (3.727353225347617e-25,-6.223685563957494e-26,1.2033039983471197e-16)
    sum e = 1.2369163949901442e-09
    sum de = -2.0669483753448695e-13
Info: cfl dt = 0.0015616126849740044 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0518e+04 | 11520 |      1 | 3.775e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.892795046640654 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.8733765423948596, dt = 0.0015616126849740044 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 21.81 us   (6.1%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 320.91 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.238020833333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.507050515521524e-28,-2.5601772795992317e-27,4.6147723417295243e-17)
    sum a = (2.9406881351340333e-25,-4.026107607083732e-26,1.1849454471718446e-16)
    sum e = 1.2369160693112549e-09
    sum de = -2.1034373774974811e-13
Info: cfl dt = 0.0015616352483595927 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9830e+04 | 11520 |      1 | 3.862e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.557069136302147 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.8749381550798336, dt = 0.0015616352483595927 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (2.0%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 293.49 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.238020833333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.498972325899758e-28,-2.583060770993266e-27,4.6331335227758046e-17)
    sum a = (2.137359702550793e-25,-2.5101803180989325e-26,1.166327533509553e-16)
    sum e = 1.2369157379819497e-09
    sum de = -2.1392517201757283e-13
Info: cfl dt = 0.0015616580956460087 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0253e+04 | 11520 |      1 | 3.808e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.763568456787983 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.876499790328193, dt = 0.0015616580956460087 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (1.9%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 309.55 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.237760416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.704412619294963e-28,-2.6347219864131313e-27,4.651202199170706e-17)
    sum a = (-5.697295917981389e-26,-2.098430029615609e-25,1.1474570066366686e-16)
    sum e = 1.2369154011075006e-09
    sum de = -2.1743897695504571e-13
Info: cfl dt = 0.0015616811852541233 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8788e+04 | 11520 |      1 | 4.002e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.048915579634514 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.878061448423839, dt = 0.0015616811852541233 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (2.2%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 941.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 266.67 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.237760416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.755544805166203e-28,-3.112154829588665e-27,4.668974472798549e-17)
    sum a = (-4.350241861093231e-25,-1.0562118156613136e-25,1.128340656515297e-16)
    sum e = 1.2369150587934343e-09
    sum de = -2.2088500449635322e-13
Info: cfl dt = 0.001561704474712867 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9059e+04 | 11520 |      1 | 3.964e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.181770724412123 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.8796231296090933, dt = 0.001561704474712867 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.7%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 326.94 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (62.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.237760416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5512233408622648e-27,-3.1946740864338193e-27,4.686446551099547e-17)
    sum a = (4.833180610985996e-25,1.9551308327496333e-25,1.108985277353084e-16)
    sum e = 1.2369147111455106e-09
    sum de = -2.242631199925329e-13
Info: cfl dt = 0.0015617279217971292 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0058e+04 | 11520 |      1 | 3.833e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.669184089326878 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.881184834083806, dt = 0.0015617279217971292 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.7%)
   patch tree reduce : 1.91 us    (0.5%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 335.73 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.237760416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.142423071471313e-29,-2.6423498168778094e-27,4.703614746911219e-17)
    sum a = (5.5305238064582e-25,3.7175549303961716e-25,1.089397676705547e-16)
    sum e = 1.2369143582697011e-09
    sum de = -2.2757320350660344e-13
Info: cfl dt = 0.0015617514856584305 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0273e+04 | 11520 |      1 | 3.805e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.774396181195078 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.8827465620056034, dt = 0.0015617514856584305 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.7%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 316.99 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (74.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.237760416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.397547902477437e-28,-1.929147668430407e-27,4.7204754788006496e-17)
    sum a = (-1.171156286372681e-25,-3.66686452976272e-25,1.0695847054166954e-16)
    sum e = 1.2369140002721623e-09
    sum de = -2.3081514847639273e-13
Info: cfl dt = 0.0015617751279136036 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0234e+04 | 11520 |      1 | 3.810e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.755432290885457 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.8843083134912617, dt = 0.0015617751279136036 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (2.1%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 276.46 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.237760416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3591407009790072e-28,-3.0622272120016814e-27,4.737025272013703e-17)
    sum a = (5.283035379836052e-26,-6.307501551981642e-25,1.049553211139387e-16)
    sum e = 1.2369136372592242e-09
    sum de = -2.339888635380581e-13
Info: cfl dt = 0.0015617988136609059 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0385e+04 | 11520 |      1 | 3.791e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.829435422355711 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.8858700886191753, dt = 0.0015617988136609059 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.7%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 332.23 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.237760416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.5365395790780287e-28,-4.266384266721092e-27,4.7532607581658213e-17)
    sum a = (-2.73126258253063e-25,-1.7377237957236443e-25,1.0293100535341833e-16)
    sum e = 1.2369132693373569e-09
    sum de = -2.37094269763159e-13
Info: cfl dt = 0.0015618225123914516 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7929e+04 | 11520 |      1 | 4.125e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.630923259763028 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.887431887432836, dt = 0.0015618225123914516 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (2.1%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.5%)
   LB compute        : 271.65 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.237586805555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.36317979578989e-28,-4.200160829505023e-27,4.769178675606423e-17)
    sum a = (4.396986593059045e-25,9.563773836613403e-26,1.0088621091608958e-16)
    sum e = 1.2369128966131554e-09
    sum de = -2.4013130338082136e-13
Info: cfl dt = 0.001561846198770302 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8521e+04 | 11520 |      1 | 4.039e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.920445552339233 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.888993709945227, dt = 0.001561846198770302 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (2.2%)
   patch tree reduce : 1.99 us    (0.7%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.5%)
   LB compute        : 282.08 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.237413194444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.208871688265925e-28,-3.834718406333627e-27,4.784775869814546e-17)
    sum a = (2.3001792110150128e-25,3.73523069390023e-25,9.882162437468455e-17)
    sum e = 1.2369125191933147e-09
    sum de = -2.430999133855009e-13
Info: cfl dt = 0.00156186985326288 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0321e+04 | 11520 |      1 | 3.799e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.798757144078502 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.8905555561439975, dt = 0.00156186985326288 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (2.1%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.5%)
   LB compute        : 267.95 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (62.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236979166666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1199042000413757e-27,-3.0337962075424266e-27,4.800049293074943e-17)
    sum a = (7.354546102302679e-26,-4.44192144888733e-25,9.673793503653207e-17)
    sum e = 1.23691213718461e-09
    sum de = -2.4600006324003993e-13
Info: cfl dt = 0.001561893462588755 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9341e+04 | 11520 |      1 | 3.926e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.32091585534524 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.8921174259972604, dt = 0.001561893462588755 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (2.0%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.5%)
   LB compute        : 285.35 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236979166666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1067288565114772e-27,-4.3624255866627215e-27,4.8149960053349996e-17)
    sum a = (2.8410062597433534e-25,-4.6863518089322745e-25,9.463583128406563e-17)
    sum e = 1.236911750693868e-09
    sum de = -2.4883172932105813e-13
Info: cfl dt = 0.0015619170199893835 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0263e+04 | 11520 |      1 | 3.807e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.771233827002394 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.8936793194598494, dt = 0.0015619170199893835 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.9%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 299.36 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (62.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.23671875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7023930718895217e-27,-5.118967680932158e-27,4.829613173780901e-17)
    sum a = (5.9290432762809725e-25,-2.2628028417380904e-25,9.251600045245929e-17)
    sum e = 1.2369113598279523e-09
    sum de = -2.5159490297949557e-13
Info: cfl dt = 0.0015619405253022617 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0220e+04 | 11520 |      1 | 3.812e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.750334058991283 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.8952412364798388, dt = 0.0015619405253022617 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.9%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.5%)
   LB compute        : 284.57 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2367187500000005
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8722248895178813e-27,-5.252107994497449e-27,4.843898072825708e-17)
    sum a = (2.5450395033225117e-25,-2.8069792014795576e-25,9.037913197864556e-17)
    sum e = 1.236910964693732e-09
    sum de = -2.542895869007931e-13
Info: cfl dt = 0.0015619639848395341 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0104e+04 | 11520 |      1 | 3.827e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.693823322034119 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.896803177005141, dt = 0.0015619639848395341 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (1.8%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.4%)
   LB compute        : 321.93 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2367187500000005
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.006752081349477e-27,-5.753811207333322e-27,4.857848084666171e-17)
    sum a = (7.625611459452013e-26,8.833582429403763e-26,8.822591150811197e-17)
    sum e = 1.2369105653980651e-09
    sum de = -2.5691579904948974e-13
Info: cfl dt = 0.0015619874110753146 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0249e+04 | 11520 |      1 | 3.808e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.764843002284747 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.8983651409899807, dt = 0.0015619874110753146 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (2.0%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 295.26 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (58.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2367187500000005
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9949636160858834e-27,-5.351963229671417e-27,4.8714606983340687e-17)
    sum a = (-4.830809049150614e-25,2.18607380165476e-25,8.605702810097904e-17)
    sum e = 1.236910162047775e-09
    sum de = -2.594735686759888e-13
Info: cfl dt = 0.0015620108221518353 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9928e+04 | 11520 |      1 | 3.849e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.60825994145767 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.899927128401056, dt = 7.287159894442397e-05 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.1%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.63 us    (0.5%)
   LB compute        : 295.88 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2367187500000005
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.519264370743231e-27,-5.196286144278668e-27,4.871918421233984e-17)
    sum a = (2.508405113918062e-25,-3.901982002249425e-27,8.5963931581501e-17)
    sum e = 1.2369101411342222e-09
    sum de = -2.5955705939968534e-13
Info: cfl dt = 0.0015620119218437412 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8734e+04 | 11520 |      1 | 4.009e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6543455123161648 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 2195                                                    [SPH][rank=0]
Info: time since start : 1002.553093458 (s)                                           [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[-1.03383199e-28 -1.64655369e-17 -4.20689348e-14 ... -1.35115042e-17
 -7.30411824e-13 -1.54767844e-11]
(11520, 3)
[[-1.03383199e-28 -1.64655369e-17 -4.20689348e-14 -2.24982735e-13
   1.90817878e-11]
 [ 1.41033280e-06 -2.82359110e-27 -7.96457032e-20  1.36246588e-08
   2.90537022e-09]
 [ 2.39665587e-05  1.94184688e-05 -6.33084999e-10 -2.86170061e-13
  -6.78454713e-11]
 ...
 [ 3.37744479e-05  3.71825172e-05  1.83808870e-05 -1.36927237e-13
  -4.93247673e-10]
 [ 9.52147660e-06  8.77801566e-07 -2.65939016e-19  5.14726938e-09
  -2.65973095e-12]
 [-6.18668755e-40 -2.45306960e-28 -1.35115042e-17 -7.30411824e-13
  -1.54767844e-11]]
compute original rho
Info: Dumping state to _to_trash/dusty_settle/dump/0000039.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.91 us   (71.3%)
Info: dump to _to_trash/dusty_settle/dump/0000039.sham                      [Shamrock Dump][rank=0]
              - took 1.19 ms, bandwidth = 2.48 GB/s
Info: evolve_until (target_time = 4.00s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 3.9000000000000004, dt = 0.0015620119218437412 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.17 us    (1.0%)
   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.53 us    (0.5%)
   LB compute        : 301.81 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2367187500000005
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.95058351156412e-27,-5.2139688421740585e-27,4.885345750621981e-17)
    sum a = (-4.320125799540415e-26,1.5434082818316353e-25,8.37708659802186e-17)
    sum e = 1.2369097357076422e-09
    sum de = -2.6207777833624797e-13
Info: cfl dt = 0.0015620353342322216 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.3518e+04 | 11520 |      1 | 4.898e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.480006527820677 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.901562011921844, dt = 0.0015620353342322216 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.7%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 324.99 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (63.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2367187500000005
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6211999233166566e-27,-4.855807529900764e-27,4.898259776155711e-17)
    sum a = (-7.488241167174492e-26,3.788271853195069e-25,8.157209566710831e-17)
    sum e = 1.23690932436417e-09
    sum de = -2.644954348114188e-13
Info: cfl dt = 0.00156205879110229 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7640e+04 | 11520 |      1 | 4.168e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.491852075073417 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.9031240472560764, dt = 0.00156205879110229 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.86 us    (1.9%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.3%)
   LB compute        : 340.62 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2367187500000005
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5074759054796377e-27,-4.0985719964981745e-27,4.910830089226051e-17)
    sum a = (-4.4231847235095485e-25,-1.150505668987398e-25,7.935971421391286e-17)
    sum e = 1.2369089093184982e-09
    sum de = -2.668450068992416e-13
Info: cfl dt = 0.0015620823153770405 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0242e+04 | 11520 |      1 | 3.809e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.762511554975992 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.904686106047179, dt = 0.0015620823153770405 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.7%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 313.81 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2367187500000005
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5130841885388742e-27,-4.694236211876219e-27,4.9230539363422975e-17)
    sum a = (1.4384701378116594e-25,-8.439362282206536e-26,7.713443885960749e-17)
    sum e = 1.2369084906495255e-09
    sum de = -2.691263913287728e-13
Info: cfl dt = 0.0015621059400855591 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9796e+04 | 11520 |      1 | 3.866e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.545166778395688 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.906248188362556, dt = 0.0015621059400855591 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (2.1%)
   patch tree reduce : 1.71 us    (0.6%)
   gen split merge   : 1.07 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.5%)
   LB compute        : 274.59 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.35 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2367187500000005
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2120708347566494e-27,-4.798252081849102e-27,4.9349293496849637e-17)
    sum a = (-4.950808691142664e-26,1.6501771051631344e-25,7.489694897869052e-17)
    sum e = 1.2369080684637152e-09
    sum de = -2.7133968381105296e-13
Info: cfl dt = 0.0015621296993291105 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7997e+04 | 11520 |      1 | 4.115e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.666865939677395 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.9078102943026414, dt = 0.0015621296993291105 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (2.0%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.5%)
   LB compute        : 262.68 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2367187500000005
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9672868207537975e-27,-4.334688021336619e-27,4.946454464714678e-17)
    sum a = (6.1680093359566745e-25,4.7633720934515286e-26,7.264792179926087e-17)
    sum e = 1.2369076428672173e-09
    sum de = -2.734849925340592e-13
Info: cfl dt = 0.0015621536272348376 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0185e+04 | 11520 |      1 | 3.817e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.735038226836423 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.9093724240019703, dt = 0.0015621536272348376 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.84 us    (2.2%)
   patch tree reduce : 1.77 us    (0.6%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.5%)
   LB compute        : 294.11 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2367187500000005
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.445005613501891e-27,-4.339542095268687e-27,4.9576275225669465e-17)
    sum a = (1.9780906024483143e-25,1.941352197173892e-26,7.038803527689064e-17)
    sum e = 1.236907213965999e-09
    sum de = -2.7556243695784075e-13
Info: cfl dt = 0.0015621777568569572 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0019e+04 | 11520 |      1 | 3.838e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.654452288962224 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.910934577629205, dt = 0.0015621777568569572 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.9%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.5%)
   LB compute        : 272.24 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2367187500000005
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.424895878640467e-27,-4.33364786263689e-27,4.968446870377502e-17)
    sum a = (3.9575264768149447e-25,7.871227600414648e-26,6.81179623545827e-17)
    sum e = 1.2369067818658256e-09
    sum de = -2.775721506694777e-13
Info: cfl dt = 0.0015622021191201605 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9887e+04 | 11520 |      1 | 3.855e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.590255464056492 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.912496755386062, dt = 0.0015622021191201605 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (2.2%)
   patch tree reduce : 1.58 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.5%)
   LB compute        : 262.47 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236458333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.200854268638176e-27,-4.154393846716955e-27,4.9789109600150145e-17)
    sum a = (3.9932732641289586e-25,-4.49796519962872e-25,6.583837574541499e-17)
    sum e = 1.2369063466722388e-09
    sum de = -2.795142773563446e-13
Info: cfl dt = 0.0015622267418367276 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0270e+04 | 11520 |      1 | 3.806e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.7774897068824 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 3.914058957505182, dt = 0.0015622267418367276 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.8%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 297.43 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236458333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.7930512883504574e-27,-5.295447940319483e-27,4.9890183483842706e-17)
    sum a = (-1.280234262017578e-25,1.1559630349653085e-25,6.354994328372169e-17)
    sum e = 1.2369059084905426e-09
    sum de = -2.813889735106802e-13
Info: cfl dt = 0.0015622516488273956 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0113e+04 | 11520 |      1 | 3.826e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.700806301113873 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.9156211842470188, dt = 0.0015622516488273956 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (2.0%)
   patch tree reduce : 1.74 us    (0.6%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 289.52 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.2050149034370916e-27,-4.684181344445507e-27,4.99876769623796e-17)
    sum a = (1.2080125762997394e-25,-1.9069714849521883e-25,6.125333087053145e-17)
    sum e = 1.2369054674257857e-09
    sum de = -2.8319640758950504e-13
Info: cfl dt = 0.0015622768591724656 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8862e+04 | 11520 |      1 | 3.991e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.090725888858575 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.917183435895846, dt = 0.0015622768591724656 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.9%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.5%)
   LB compute        : 279.21 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.599581770200895e-27,-5.2039139747433465e-27,5.008157768051275e-17)
    sum a = (3.608449217185949e-26,1.9766898553993462e-25,5.894920203810567e-17)
    sum e = 1.2369050235827388e-09
    sum de = -2.8493675892972247e-13
Info: cfl dt = 0.0015623023866159136 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0123e+04 | 11520 |      1 | 3.824e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.706350490267388 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.9187457127550185, dt = 0.0015623023866159136 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (1.8%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 11.49 us   (3.3%)
   LB compute        : 316.78 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.596808013668285e-27,-4.594380976702251e-27,5.0171874315953045e-17)
    sum a = (2.2521446822615354e-25,-3.314555843773233e-25,5.663821616586656e-17)
    sum e = 1.2369045770658854e-09
    sum de = -2.8661021970092404e-13
Info: cfl dt = 0.001562328239140484 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0203e+04 | 11520 |      1 | 3.814e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.745532079556433 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.9203080151416345, dt = 0.001562328239140484 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.6%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 318.92 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.0829088460082256e-27,-5.5416188325886404e-27,5.0258556571093644e-17)
    sum a = (-1.1447847961388894e-25,3.741520186837924e-26,5.432103013228155e-17)
    sum e = 1.2369041279794014e-09
    sum de = -2.8821699224726924e-13
Info: cfl dt = 0.0015623544187259174 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8894e+04 | 11520 |      1 | 3.987e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.106774189173533 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.921870343380775, dt = 0.0015623544187259174 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.8%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 312.48 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (7.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.634253726858523e-27,-5.174442811584363e-27,5.034161516997757e-17)
    sum a = (-5.777873545253716e-26,-1.5137914964546897e-25,5.199829617343446e-17)
    sum e = 1.2369036764271385e-09
    sum de = -2.897572912403097e-13
Info: cfl dt = 0.0015623809212978236 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9244e+04 | 11520 |      1 | 3.939e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.277765517138103 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.923432697799501, dt = 0.0015623809212978236 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.6%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 322.70 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2366319444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.6009686484672e-27,-5.551326980452776e-27,5.042104184897015e-17)
    sum a = (1.082805206417714e-25,9.637417072554204e-26,4.96706657378897e-17)
    sum e = 1.2369032225126095e-09
    sum de = -2.912313412428189e-13
Info: cfl dt = 0.001562407736867696 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0051e+04 | 11520 |      1 | 3.834e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.671984016341023 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.924995078720799, dt = 0.001562407736867696 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.9%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.4%)
   LB compute        : 273.34 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2366319444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.910935940986392e-27,-5.20356725517677e-27,5.0496829358709867e-17)
    sum a = (1.357504184624767e-25,-2.5393186304740027e-25,4.73387821192149e-17)
    sum e = 1.2369027663389764e-09
    sum de = -2.9263937908315237e-13
Info: cfl dt = 0.001562434849859593 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0312e+04 | 11520 |      1 | 3.800e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.79989887355174 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.9265574864576664, dt = 0.001562434849859593 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.4%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 350.32 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2366319444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.146011807125108e-27,-5.885217923065731e-27,5.056897144518844e-17)
    sum a = (-6.992154811317155e-26,-1.4127296771890365e-25,4.5003288558584236e-17)
    sum e = 1.2369023080090289e-09
    sum de = -2.9398165191407344e-13
Info: cfl dt = 0.0015624622396125999 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8496e+04 | 11520 |      1 | 4.043e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.91355105376251 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.928119921307526, dt = 0.0015624622396125999 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.9%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.59 us    (0.5%)
   LB compute        : 297.19 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (63.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2366319444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.877650862595069e-27,-6.0284131040617334e-27,5.063746285598687e-17)
    sum a = (-3.1854513459628905e-26,-2.8961069332636554e-25,4.266482295606581e-17)
    sum e = 1.236901847625174e-09
    sum de = -2.952584172200307e-13
Info: cfl dt = 0.0015624898810429816 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7762e+04 | 11520 |      1 | 4.150e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.555277073885295 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.9296823835471386, dt = 0.0015624898810429816 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.5%)
   patch tree reduce : 1.96 us    (0.5%)
   gen split merge   : 1.00 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 381.18 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2366319444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.855460810334188e-27,-6.616796208541677e-27,5.070229932801517e-17)
    sum a = (-9.545467043498176e-26,-1.836351643631932e-25,4.0324018482715534e-17)
    sum e = 1.2369013852894175e-09
    sum de = -2.964699436983283e-13
Info: cfl dt = 0.0015625177454450304 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8387e+04 | 11520 |      1 | 4.058e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.860869974093887 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.9312448734281817, dt = 0.0015625177454450304 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.7%)
   patch tree reduce : 1.95 us    (0.5%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 335.66 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2366319444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.658524096518862e-27,-6.780447843965679e-27,5.076347758077956e-17)
    sum a = (-1.8134473490639033e-25,1.31297152349371e-25,3.798150312817192e-17)
    sum e = 1.2369009211033528e-09
    sum de = -2.976165105749569e-13
Info: cfl dt = 0.001562545801405822 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7479e+04 | 11520 |      1 | 4.192e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.41748974422767 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.9328073911736268, dt = 0.001562545801405822 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.7%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 1.43 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 324.47 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2366319444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.291001355948008e-27,-6.364731083640723e-27,5.082099530812694e-17)
    sum a = (-4.0915058517313495e-25,5.643568253944729e-25,3.563790346774332e-17)
    sum e = 1.2369004551681416e-09
    sum de = -2.9869840610269083e-13
Info: cfl dt = 0.0015625740158055914 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8379e+04 | 11520 |      1 | 4.059e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.85723707212972 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.9343699369750325, dt = 0.0015625740158055914 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.7%)
   patch tree reduce : 1.91 us    (0.5%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.4%)
   LB compute        : 334.05 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236458333333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.475516935360604e-27,-5.1113398504674804e-27,5.0874851179146784e-17)
    sum a = (1.9031506353285178e-25,5.089704549513121e-26,3.329383966897566e-17)
    sum e = 1.236899987584499e-09
    sum de = -2.9971593086069145e-13
Info: cfl dt = 0.0015626023548651361 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0316e+04 | 11520 |      1 | 3.800e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.803280463406491 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.935932510990838, dt = 0.0015626023548651361 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.9%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 1.04 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 273.46 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236458333333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.245927812293092e-27,-5.431015290850808e-27,5.0925044824847464e-17)
    sum a = (-1.1753793306935802e-26,3.408003701356871e-25,3.094992588212381e-17)
    sum e = 1.2368995184526843e-09
    sum de = -3.0066939297623744e-13
Info: cfl dt = 0.0015626307852212912 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8245e+04 | 11520 |      1 | 4.079e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.792320649372618 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.937495113345703, dt = 0.0015626307852212912 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.7%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 304.72 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236284722222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.0642467594071225e-27,-4.6699658422158795e-27,5.0971576829255385e-17)
    sum a = (3.1042704266447207e-25,-1.3228877030977916e-25,2.8606772874441604e-17)
    sum e = 1.236899047872476e-09
    sum de = -3.015591123157605e-13
Info: cfl dt = 0.0015626592749848364 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0354e+04 | 11520 |      1 | 3.795e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.822658277192629 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.939057744130924, dt = 0.0015626592749848364 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.6%)
   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.28 us    (0.4%)
   LB compute        : 302.66 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (73.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236284722222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.811774144945577e-27,-5.304809368617043e-27,5.10144487266842e-17)
    sum a = (5.876688621727954e-25,-6.488163249341878e-25,2.6264985652549592e-17)
    sum e = 1.236898575943164e-09
    sum de = -3.0238541787774745e-13
Info: cfl dt = 0.0015626877947524714 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0332e+04 | 11520 |      1 | 3.798e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.811880330987405 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.9406204034059087, dt = 0.0015626877947524714 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.79 us    (1.9%)
   patch tree reduce : 1.99 us    (0.5%)
   gen split merge   : 1.24 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 344.61 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236284722222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.9309849058537995e-27,-6.682672926191168e-27,5.105366299139113e-17)
    sum a = (9.496995648090812e-26,1.5619716474261293e-25,2.3925165895717156e-17)
    sum e = 1.2368981027635279e-09
    sum de = -3.0314864826032735e-13
Info: cfl dt = 0.0015627163185382897 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0241e+04 | 11520 |      1 | 3.809e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.76776087430393 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.9421830912006612, dt = 0.0015627163185382897 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.9%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 17.67 us   (5.6%)
   LB compute        : 279.42 us  (88.2%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236284722222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.670945230921592e-27,-5.79784459228851e-27,5.108922303467997e-17)
    sum a = (-3.3401229446125673e-25,2.865928462188856e-25,2.1587907824906888e-17)
    sum e = 1.2368976284318268e-09
    sum de = -3.038491516232707e-13
Info: cfl dt = 0.0015627448245974786 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7225e+04 | 11520 |      1 | 4.231e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.295069598321277 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.9437458075191993, dt = 0.0015627448245974786 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (2.0%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1.06 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 279.02 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236284722222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.827723245008085e-27,-5.248987518398262e-27,5.1121133190247097e-17)
    sum a = (-2.0077420597819176e-25,-1.8288902385592106e-25,1.925380053653636e-17)
    sum e = 1.2368971530457767e-09
    sum de = -3.044872853173463e-13
Info: cfl dt = 0.001562773296115377 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0375e+04 | 11520 |      1 | 3.793e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.833779874549355 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.9453085523437967, dt = 0.001562773296115377 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.7%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1.20 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 322.77 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236545138888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.62801277466015e-27,-5.9309849058537995e-27,5.11493987085855e-17)
    sum a = (2.645061163888436e-25,-1.619138769563226e-25,1.6923429038495627e-17)
    sum e = 1.2368966767025423e-09
    sum de = -3.0506341618299337e-13
Info: cfl dt = 0.0015628017217396255 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9972e+04 | 11520 |      1 | 3.844e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.637339773037265 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.946871325639912, dt = 0.0015628017217396255 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (1.8%)
   patch tree reduce : 2.20 us    (0.6%)
   gen split merge   : 1.23 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.4%)
   LB compute        : 341.61 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236545138888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.409518677723079e-27,-6.157046063261533e-27,5.1174025751404363e-17)
    sum a = (1.778345460143721e-25,4.2267888922180814e-26,1.4597372011607793e-17)
    sum e = 1.2368961994987134e-09
    sum de = -3.0557792038702825e-13
Info: cfl dt = 0.0015628300959384328 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7644e+04 | 11520 |      1 | 4.167e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.500525926364915 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.9484341273616517, dt = 0.0015628300959384328 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (1.9%)
   patch tree reduce : 1.80 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.5%)
   LB compute        : 300.93 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.50 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236545138888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.599521000206879e-27,-5.93930617545163e-27,5.1195021380778915e-17)
    sum a = (5.593973487141658e-27,1.834950896582964e-25,1.2276201948972512e-17)
    sum e = 1.236895721530293e-09
    sum de = -3.060311822906229e-13
Info: cfl dt = 0.0015628584191728504 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8024e+04 | 11520 |      1 | 4.111e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.68626706987719 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.94999695745759, dt = 0.0015628584191728504 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.8%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 299.98 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236545138888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.478169151905181e-27,-5.524629573826403e-27,5.121239354905986e-17)
    sum a = (1.2358957638438036e-25,2.1726834919935843e-25,9.960484940417343e-18)
    sum e = 1.2368952428926825e-09
    sum de = -3.064235952959678e-13
Info: cfl dt = 0.0015628866978772125 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0404e+04 | 11520 |      1 | 3.789e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.849006836844854 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.951559815876763, dt = 0.0015628866978772125 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.5%)
   patch tree reduce : 2.01 us    (0.5%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 363.53 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.64 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236545138888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.767333270429797e-27,-5.174789531150939e-27,5.1226151089596104e-17)
    sum a = (-1.8863000643929107e-25,-3.859418708256521e-25,7.650783091205836e-18)
    sum e = 1.2368947636806627e-09
    sum de = -3.0675556188676453e-13
Info: cfl dt = 0.0015629149442472005 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0355e+04 | 11520 |      1 | 3.795e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.825520845983087 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.9531227025746403, dt = 0.0015629149442472005 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.9%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.59 us    (0.5%)
   LB compute        : 270.50 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236545138888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.227144185703957e-27,-6.2756241550306196e-27,5.1236303711721044e-17)
    sum a = (-4.943666268071193e-26,1.6769161181374967e-25,5.34765120895697e-18)
    sum e = 1.2368942839883823e-09
    sum de = -3.070274929962292e-13
Info: cfl dt = 0.0015629431758416297 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0436e+04 | 11520 |      1 | 3.785e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.865091423596384 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.9546856175188876, dt = 0.0015629431758416297 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.7%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 308.58 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236545138888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.293714342486602e-27,-5.570049837047895e-27,5.1242861987034665e-17)
    sum a = (1.197770480303076e-25,-4.231018870930312e-25,3.0516369337090295e-18)
    sum e = 1.2368938039093394e-09
    sum de = -3.072398070906587e-13
Info: cfl dt = 0.0015629714150093366 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7027e+04 | 11520 |      1 | 4.262e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.200727638863672 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.9562485606947293, dt = 0.0015629714150093366 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.9%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 941.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 307.08 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236545138888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.571089995747624e-27,-6.67504509572649e-27,5.124583733844373e-17)
    sum a = (5.089288486033229e-26,4.733415522899338e-25,7.632832010438331e-19)
    sum e = 1.2368933235363716e-09
    sum de = -3.0739293154940504e-13
Info: cfl dt = 0.0015629996881580195 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7819e+04 | 11520 |      1 | 4.141e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.58757529573967 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.9578115321097385, dt = 0.0015629996881580195 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.7%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 316.11 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236545138888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.582878461011217e-27,-5.2403195292338556e-27,5.1245242034047764e-17)
    sum a = (1.2088030969115333e-25,2.347194384242756e-25,-1.5168747533578664e-18)
    sum e = 1.2368928429616353e-09
    sum de = -3.074873018927657e-13
Info: cfl dt = 0.0015630280248872812 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0343e+04 | 11520 |      1 | 3.797e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.82042296140922 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.9593745317978963, dt = 0.0015630280248872812 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.5%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 320.09 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236284722222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.8283559141472214e-27,-5.066266306812564e-27,5.124108917324614e-17)
    sum a = (-2.9537455940112956e-25,2.1380531416839455e-25,-3.788306880928042e-18)
    sum e = 1.2368923622765992e-09
    sum de = -3.075233607866048e-13
Info: cfl dt = 0.0015630564570112205 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0458e+04 | 11520 |      1 | 3.782e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.876993360128395 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.9609375598227836, dt = 0.0015630564570112205 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.8%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 313.81 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236284722222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.0593319154810386e-27,-4.742083512063745e-27,5.1233392679674813e-17)
    sum a = (6.670884460927576e-28,-2.4575482878926537e-26,-6.050490151719275e-18)
    sum e = 1.2368918815720286e-09
    sum de = -3.0750155942243994e-13
Info: cfl dt = 0.001563085017501641 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0321e+04 | 11520 |      1 | 3.799e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.810387797450836 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.9625006162797947, dt = 0.001563085017501641 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.7%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 320.11 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236284722222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.281925877223009e-27,-4.957743082474189e-27,5.1222167289096954e-17)
    sum a = (-2.950569642781457e-25,-2.3631434843052647e-25,-8.30290953374919e-18)
    sum e = 1.2368914009379712e-09
    sum de = -3.0742235568966255e-13
Info: cfl dt = 0.0015631137393827908 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0425e+04 | 11520 |      1 | 3.786e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.861530695249913 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.964063701297296, dt = 0.0015631137393827908 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.8%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.4%)
   LB compute        : 322.75 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2360243055555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.5864064266709964e-27,-5.496198569367148e-27,5.1207428535622506e-17)
    sum a = (-1.0087181694316951e-25,4.136184135080369e-25,-1.0545055260841695e-17)
    sum e = 1.2368909204637493e-09
    sum de = -3.0728621574949496e-13
Info: cfl dt = 0.001563142654612033 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7392e+04 | 11520 |      1 | 4.206e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.380028954565198 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.965626815036679, dt = 0.001563142654612033 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (1.9%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 315.35 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2360243055555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.602355526733505e-27,-4.3561846344643484e-27,5.11891927455337e-17)
    sum a = (-2.8222972719308976e-26,-4.599290525764971e-25,-1.2776425977718247e-17)
    sum e = 1.2368904402379442e-09
    sum de = -3.070936123829049e-13
Info: cfl dt = 0.0015631717929806119 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0404e+04 | 11520 |      1 | 3.789e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.851589624579644 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.967189957691291, dt = 0.0015631717929806119 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.7%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 314.44 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (71.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2360243055555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.5898736223367595e-27,-5.778428296560238e-27,5.116747702147631e-17)
    sum a = (-4.059593782823669e-25,-1.7252488257182299e-25,-1.4996523293015796e-17)
    sum e = 1.2368899603483904e-09
    sum de = -3.0684502620934917e-13
Info: cfl dt = 0.0015632011810686193 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0423e+04 | 11520 |      1 | 3.787e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.861147061852805 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.9687531294842717, dt = 0.0015632011810686193 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.7%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 323.17 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2360243055555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.6675995752438614e-27,-5.8117133749515605e-27,5.114229924180746e-17)
    sum a = (2.293688620728705e-25,-3.7077635698360572e-25,-1.720486304141163e-17)
    sum e = 1.2368894808821586e-09
    sum de = -3.0654094369459063e-13
Info: cfl dt = 0.001563230841286511 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6837e+04 | 11520 |      1 | 4.293e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.110018688194675 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.9703163306653404, dt = 0.001563230841286511 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.8%)
   patch tree reduce : 1.56 us    (0.5%)
   gen split merge   : 881.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 300.49 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.60 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (61.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2360243055555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.5281575394861816e-27,-6.536010549529404e-27,5.111367802965228e-17)
    sum a = (6.924128432354889e-26,2.9029303743338763e-25,-1.9400961026656863e-17)
    sum e = 1.2368890019255575e-09
    sum de = -3.0618185941954045e-13
Info: cfl dt = 0.0015632607910330443 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0312e+04 | 11520 |      1 | 3.800e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.807926115916997 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.971879561506627, dt = 0.0015632607910330443 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.7%)
   patch tree reduce : 1.86 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 324.47 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (72.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236458333333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.486551191497028e-27,-5.5416188325886404e-27,5.108163276388237e-17)
    sum a = (-2.498877260228546e-26,-7.913388699710323e-26,-2.1584344003312812e-17)
    sum e = 1.2368885235641119e-09
    sum de = -3.057682730844494e-13
Info: cfl dt = 0.0015632910419957956 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5387e+04 | 11520 |      1 | 4.538e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.402029306176093 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.97344282229766, dt = 0.0015632910419957956 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.9%)
   patch tree reduce : 1.71 us    (0.6%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.5%)
   LB compute        : 269.14 us  (88.0%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236458333333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.386695956323061e-27,-5.9892337930386144e-27,5.1046183553772503e-17)
    sum a = (-1.0660794545260745e-25,1.2872726692190763e-25,-2.3754545325285142e-17)
    sum e = 1.2368880458825665e-09
    sum de = -3.05300692719954e-13
Info: cfl dt = 0.001563321599617671 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0466e+04 | 11520 |      1 | 3.781e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.883317626269882 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.975006113339656, dt = 0.001563321599617671 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.6%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 318.67 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236458333333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.180744533776752e-27,-5.5988275610737264e-27,5.100735123182862e-17)
    sum a = (-3.043476617841236e-25,8.855217730358123e-26,-2.5911103888609844e-17)
    sum e = 1.2368875689648672e-09
    sum de = -3.047796309159616e-13
Info: cfl dt = 0.0015633524627453104 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0419e+04 | 11520 |      1 | 3.787e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.860606186852172 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.9765694349392735, dt = 0.0015633524627453104 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (2.0%)
   patch tree reduce : 1.96 us    (0.7%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 270.68 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236458333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.5309920660128085e-27,-5.522549256426945e-27,5.0965157346428475e-17)
    sum a = (-2.834245228195116e-25,1.6171000585117573e-26,-2.805356876358252e-17)
    sum e = 1.2368870928941597e-09
    sum de = -3.0420560702329797e-13
Info: cfl dt = 0.0015633836234724614 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0362e+04 | 11520 |      1 | 3.794e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.833347875836198 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.9781327874020187, dt = 0.0015633836234724614 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (2.1%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 266.43 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236458333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.104526999123987e-27,-5.5506335413196235e-27,5.091962414256933e-17)
    sum a = (-1.4785301165338824e-25,-1.3023202984084867e-25,-3.018149389522889e-17)
    sum e = 1.2368866177527812e-09
    sum de = -3.0357914686405043e-13
Info: cfl dt = 0.001563415067182971 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0470e+04 | 11520 |      1 | 3.781e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.88619243659342 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.9796961710254912, dt = 0.001563415067182971 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (2.0%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 1.37 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 282.71 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236458333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9672260507597813e-27,-5.87134914040268e-27,5.0870774558617443e-17)
    sum a = (2.8124504362401313e-25,2.7321501846210654e-28,-3.229444067579699e-17)
    sum e = 1.2368861436222523e-09
    sum de = -3.0290078156140376e-13
Info: cfl dt = 0.0015634467727965217 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8457e+04 | 11520 |      1 | 4.048e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.902926688640465 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.981259586092674, dt = 0.0015634467727965217 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (2.2%)
   patch tree reduce : 1.71 us    (0.6%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.5%)
   LB compute        : 260.39 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.741797562491185e-27,-5.730580996372712e-27,5.0818632213185717e-17)
    sum a = (3.75136702252869e-26,-2.0296408676068752e-25,-3.4391981359745396e-17)
    sum e = 1.2368856705832721e-09
    sum de = -3.0217104858592845e-13
Info: cfl dt = 0.0015634787132091288 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0119e+04 | 11520 |      1 | 3.825e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.715252463965085 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.9828230328654706, dt = 0.0015634787132091288 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (1.7%)
   patch tree reduce : 2.15 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 342.72 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.641942327317217e-27,-6.2128679134803135e-27,5.07632213858571e-17)
    sum a = (3.6057448045666534e-25,-1.6975389979574536e-26,-3.647369205954752e-17)
    sum e = 1.2368851987157043e-09
    sum de = -3.0139049043182124e-13
Info: cfl dt = 0.0015635108559163297 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0299e+04 | 11520 |      1 | 3.802e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.803577910779165 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.9843865115786796, dt = 0.0015635108559163297 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.8%)
   patch tree reduce : 2.39 us    (0.7%)
   gen split merge   : 1.37 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.65 us    (0.5%)
   LB compute        : 317.87 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.4380104521763496e-27,-6.0974102978104126e-27,5.070456701709532e-17)
    sum a = (4.0270229467394936e-25,-4.153700407583802e-27,-3.853915726855821e-17)
    sum e = 1.2368847280985787e-09
    sum de = -3.0055965565431797e-13
Info: cfl dt = 0.0015635431638028859 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7502e+04 | 11520 |      1 | 4.189e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.437616467722565 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.985950022434596, dt = 0.0015635431638028859 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.6%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 333.47 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.095390750404972e-27,-6.09394310214465e-27,5.064269469261963e-17)
    sum a = (1.4148654697191463e-25,-2.207674430652462e-25,-4.058796911538259e-17)
    sum e = 1.2368842588100793e-09
    sum de = -2.996790979666998e-13
Info: cfl dt = 0.0015635755960763382 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0458e+04 | 11520 |      1 | 3.782e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.881777775934548 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.9875135655983986, dt = 0.0015635755960763382 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.3%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 271.35 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.136303659260972e-27,-6.619916684640862e-27,5.057763063173976e-17)
    sum a = (2.6156524102514362e-27,4.277118704502294e-25,-4.261972692617691e-17)
    sum e = 1.2368837909275349e-09
    sum de = -2.9874937541178777e-13
Info: cfl dt = 0.0015636081093178891 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7826e+04 | 11520 |      1 | 4.140e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.596393835308678 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.9890771411944748, dt = 0.0015636081093178891 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.7%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 308.91 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (71.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.014951810959275e-27,-5.4403767191483676e-27,5.050940167766657e-17)
    sum a = (1.6650097682212674e-25,-1.0815708847607024e-25,-4.463403961877455e-17)
    sum e = 1.2368833245274201e-09
    sum de = -2.977710524993242e-13
Info: cfl dt = 0.0015636406586205646 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0362e+04 | 11520 |      1 | 3.794e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.835832614220337 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.9906407493037928, dt = 0.0015636406586205646 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.7%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 314.56 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 16.93 us   (95.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.4178399473209095e-27,-6.017664797497869e-27,5.043803528067842e-17)
    sum a = (1.8111243279678423e-26,4.687371164458008e-26,-4.663052105815346e-17)
    sum e = 1.2368828596853369e-09
    sum de = -2.96744697579727e-13
Info: cfl dt = 0.0015636731987817467 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7883e+04 | 11520 |      1 | 4.132e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.624677302043617 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.992204389962413, dt = 0.0015636731987817467 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.8%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.5%)
   LB compute        : 306.11 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.323532225212162e-27,-5.830436231546679e-27,5.036355949494188e-17)
    sum a = (-8.7105663271825e-26,1.8031359091539247e-25,-4.8608795784006925e-17)
    sum e = 1.2368823964760165e-09
    sum de = -2.95670884143391e-13
Info: cfl dt = 0.0015637056855165891 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0245e+04 | 11520 |      1 | 3.809e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.779142442960744 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.9937680631611947, dt = 0.0015637056855165891 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.8%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.5%)
   LB compute        : 304.36 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.38 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.084989163407683e-27,-5.435869364782876e-27,5.028600295698412e-17)
    sum a = (6.0347927440867375e-25,3.107273018091271e-25,-5.0568491775174967e-17)
    sum e = 1.236881934973306e-09
    sum de = -2.9455019056590445e-13
Info: cfl dt = 0.0015637380766526227 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0299e+04 | 11520 |      1 | 3.802e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.806071325287093 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.9953317688467114, dt = 0.0015637380766526227 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.8%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.5%)
   LB compute        : 285.06 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.587671764949269e-27,-4.8603148842662554e-27,5.020539488706009e-17)
    sum a = (1.7863408133489698e-25,-6.743002130775441e-26,-5.250925047594487e-17)
    sum e = 1.2368814752501595e-09
    sum de = -2.933831987514685e-13
Info: cfl dt = 0.0015637703332783339 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0138e+04 | 11520 |      1 | 3.822e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.72746222671305 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.996895506923364, dt = 0.0015637703332783339 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (2.2%)
   patch tree reduce : 1.69 us    (0.6%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.64 us    (0.6%)
   LB compute        : 266.58 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.532890073430217e-27,-5.227144185703957e-27,5.0121765059785196e-17)
    sum a = (-4.919950649717375e-27,3.3236398964175314e-25,-5.4430716331146946e-17)
    sum e = 1.2368810173786377e-09
    sum de = -2.9217049592119087e-13
Info: cfl dt = 0.0015638024208071669 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0202e+04 | 11520 |      1 | 3.814e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.759014383215103 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.9984592772566425, dt = 0.001540722743357481 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (2.2%)
   patch tree reduce : 1.99 us    (0.7%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.56 us    (0.5%)
   LB compute        : 264.98 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.38172034240296e-27,-4.4525726739725535e-27,5.003640005153785e-17)
    sum a = (1.834673520929703e-25,2.612878653718826e-25,-5.630439750668384e-17)
    sum e = 1.2368805681728892e-09
    sum de = -2.9093090138486803e-13
Info: cfl dt = 0.001563833837988981 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7801e+04 | 11520 |      1 | 4.144e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.385531489371168 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 2259                                                    [SPH][rank=0]
Info: time since start : 1030.8484550110002 (s)                                       [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[-1.35472097e-29 -7.32960480e-18 -3.04804127e-14 ... -4.64729623e-18
 -4.77557584e-13 -1.30680892e-11]
(11520, 3)
[[-1.35472097e-29 -7.32960480e-18 -3.04804127e-14  2.59381222e-14
   3.85584632e-11]
 [ 1.16122026e-06 -3.39942352e-29 -1.36681133e-20  1.28535093e-08
   3.32053144e-09]
 [ 2.36636287e-05  1.84230490e-05 -4.86235679e-11  4.39204321e-10
  -4.51617688e-11]
 ...
 [ 3.35916086e-05  3.64428523e-05  1.58618374e-05 -3.80122489e-14
  -2.96133795e-10]
 [ 9.21836400e-06  8.63274419e-08 -2.72098271e-20  7.17864544e-09
  -1.85286507e-12]
 [-7.59848806e-43 -1.68333831e-29 -4.64729623e-18 -4.77557584e-13
  -1.30680892e-11]]
compute original rho
Info: Dumping state to _to_trash/dusty_settle/dump/0000040.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.31 us   (69.9%)
Info: dump to _to_trash/dusty_settle/dump/0000040.sham                      [Shamrock Dump][rank=0]
              - took 1.10 ms, bandwidth = 2.68 GB/s
Info: evolve_until (target_time = 4.10s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 4, dt = 0.001563833837988981 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.40 us    (1.2%)
   patch tree reduce : 1.16 us    (0.4%)
   gen split merge   : 741.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.5%)
   LB compute        : 262.80 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.809572287558087e-27,-4.089210568200615e-27,4.99469059178693e-17)
    sum a = (2.970693246425544e-25,9.024000815367454e-26,-5.818676698611863e-17)
    sum e = 1.236880114160423e-09
    sum de = -2.8962987662505824e-13
Info: cfl dt = 0.0015638655118435474 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0359e+04 | 11520 |      1 | 3.795e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.83622089936303 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.001563833837989, dt = 0.0015638655118435474 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.7%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 289.56 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.58 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236111111111112
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.355308885349147e-27,-4.0760352246707164e-27,4.985443778322452e-17)
    sum a = (2.2360360911984015e-25,2.119122253348881e-25,-6.004861189819347e-17)
    sum e = 1.2368796622355262e-09
    sum de = -2.882842424409254e-13
Info: cfl dt = 0.0015638969447736724 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6883e+04 | 11520 |      1 | 4.285e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.137801780662128 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.003127699349832, dt = 0.0015638969447736724 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.7%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 315.03 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (71.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236111111111112
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.688853108395526e-27,-3.6384751316514544e-27,4.9759072104994284e-17)
    sum a = (-3.1416051895736544e-25,5.795902962715683e-26,-6.188983339492057e-17)
    sum e = 1.236879212440861e-09
    sum de = -2.868952797920959e-13
Info: cfl dt = 0.0015639281303033198 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0311e+04 | 11520 |      1 | 3.801e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.813477236336832 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.004691596294606, dt = 0.0015639281303033198 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.8%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 307.29 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236111111111112
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.75895123083795e-27,-3.671760210042777e-27,4.9660841113203715e-17)
    sum a = (1.9075817113893625e-25,-1.1765304396546134e-25,-6.371011601887503e-17)
    sum e = 1.2368787648433462e-09
    sum de = -2.8546359163849293e-13
Info: cfl dt = 0.0015639590664058925 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0327e+04 | 11520 |      1 | 3.799e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.821434505830803 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.006255524424909, dt = 0.0015639590664058925 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (1.8%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 321.06 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236111111111112
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.455857559656268e-27,-3.980340624295664e-27,4.9559777704059305e-17)
    sum a = (-3.4780757257619366e-25,-3.0456748198933296e-25,-6.550915265937577e-17)
    sum e = 1.2368783195094882e-09
    sum de = -2.8398978703146293e-13
Info: cfl dt = 0.00156398975855528 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0345e+04 | 11520 |      1 | 3.796e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.83080284186949 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.007819483491315, dt = 0.00156398975855528 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.6%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.72 us    (0.5%)
   LB compute        : 319.27 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.53 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235850694444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.479495260177471e-27,-4.601315368033776e-27,4.945591525037162e-17)
    sum a = (-4.366516877548321e-26,6.028274416235103e-26,-6.728664698117141e-17)
    sum e = 1.2368778765048406e-09
    sum de = -2.8247447951181587e-13
Info: cfl dt = 0.0015640202195562993 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0309e+04 | 11520 |      1 | 3.801e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.813368022966257 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.00938347324987, dt = 0.0015640202195562993 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.8%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.54 us    (0.5%)
   LB compute        : 311.89 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235850694444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.638292821669405e-27,-4.249395007958855e-27,4.934928758251594e-17)
    sum a = (-2.6311854468340533e-25,-3.0264942934703303e-25,-6.904230532484104e-17)
    sum e = 1.2368774358939912e-09
    sum de = -2.809182857377647e-13
Info: cfl dt = 0.001564050469195181 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0284e+04 | 11520 |      1 | 3.804e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.8017293719184 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 4.010947493469426, dt = 0.001564050469195181 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.7%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 331.48 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.53 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235850694444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.054417071554955e-27,-5.0267402762228685e-27,4.923992898995637e-17)
    sum a = (1.4553900526605817e-25,1.2545423421342758e-25,-7.077584656402313e-17)
    sum e = 1.2368769977405605e-09
    sum de = -2.7932182405229195e-13
Info: cfl dt = 0.0015640805336904478 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0241e+04 | 11520 |      1 | 3.809e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.780847753606249 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.012511543938621, dt = 0.0015640805336904478 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.0%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 310.79 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235850694444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.629971552071574e-27,-4.454306271805435e-27,4.912787419302017e-17)
    sum a = (-1.7031835925013155e-25,-2.3721928649929055e-25,-7.248699684589195e-17)
    sum e = 1.2368765621071925e-09
    sum de = -2.7768571661225253e-13
Info: cfl dt = 0.001564110444968787 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9978e+04 | 11520 |      1 | 3.843e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.65243166417726 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.014075624472311, dt = 0.001564110444968787 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.9%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 288.51 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235850694444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.109892202207159e-27,-5.1248619135639554e-27,4.901315833574739e-17)
    sum a = (5.551791584671988e-25,5.824056591521676e-25,-7.417548927882976e-17)
    sum e = 1.2368761290555503e-09
    sum de = -2.7601058886961797e-13
Info: cfl dt = 0.0015641402397855056 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0373e+04 | 11520 |      1 | 3.793e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.845947344638018 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.01563973491728, dt = 0.0015641402397855056 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.7%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 319.37 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235850694444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.540457133900879e-27,-3.5472878856418936e-27,4.889581697386317e-17)
    sum a = (-6.8011261989162885e-25,5.773414731627545e-25,-7.584106506170632e-17)
    sum e = 1.2368756986463105e-09
    sum de = -2.7429706704635224e-13
Info: cfl dt = 0.0015641699587150054 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9986e+04 | 11520 |      1 | 3.842e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.656884827800441 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.017203875157065, dt = 0.0015641699587150054 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (1.9%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 306.00 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235850694444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.498278886766606e-27,-2.6614193930395045e-27,4.877588606115518e-17)
    sum a = (1.490228434710166e-25,-2.1048928823365904e-25,-7.748347316864842e-17)
    sum e = 1.236875270939159e-09
    sum de = -2.725457818348864e-13
Info: cfl dt = 0.0015641996450385571 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9785e+04 | 11520 |      1 | 3.868e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.558766299964113 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.01876804511578, dt = 0.0015641996450385571 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (2.1%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 296.52 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235850694444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.374092511938282e-27,-3.6200989946229116e-27,4.8653401937206277e-17)
    sum a = (3.319000788616741e-25,-8.056653224619641e-26,-7.910247215173056e-17)
    sum e = 1.2368748459927833e-09
    sum de = -2.70757364654266e-13
Info: cfl dt = 0.0015642293435647455 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0342e+04 | 11520 |      1 | 3.797e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.831456214694795 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.0203322447608185, dt = 0.0015642293435647455 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (2.0%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 272.76 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (60.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235850694444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.045341592829955e-27,-3.645756242549556e-27,4.852840131034267e-17)
    sum a = (-7.983842115638622e-26,-2.6008405503672976e-25,-8.06978271232749e-17)
    sum e = 1.2368744238648762e-09
    sum de = -2.6893244972882763e-13
Info: cfl dt = 0.0015642590994131647 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8106e+04 | 11520 |      1 | 4.099e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.738584325970729 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.021896474104383, dt = 0.0015642590994131647 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.9%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.70 us    (0.5%)
   LB compute        : 299.33 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235850694444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.591832399748184e-27,-4.1914928403406165e-27,4.840092124944896e-17)
    sum a = (2.059167505896511e-26,3.0854019478316396e-25,-8.226931121152281e-17)
    sum e = 1.2368740046121239e-09
    sum de = -2.6707167328608157e-13
Info: cfl dt = 0.0015642889567986727 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0348e+04 | 11520 |      1 | 3.796e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.835211673085285 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.023460733203796, dt = 0.0015642889567986727 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (2.0%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 1.42 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 268.54 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235850694444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.695154830587915e-27,-3.257430327984125e-27,4.8270999170264506e-17)
    sum a = (-2.985602187788324e-26,1.8489861046379716e-26,-8.381670631758748e-17)
    sum e = 1.2368735882902087e-09
    sum de = -2.651756725733294e-13
Info: cfl dt = 0.0015643189578499448 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0335e+04 | 11520 |      1 | 3.798e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.829014824572461 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.025025022160595, dt = 0.0015643189578499448 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.9%)
   patch tree reduce : 2.31 us    (0.8%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.5%)
   LB compute        : 275.11 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236111111111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.63135843033788e-27,-3.466848946196197e-27,4.8138672821053024e-17)
    sum a = (1.1172205905960752e-25,-1.646349321148132e-25,-8.53398007186343e-17)
    sum e = 1.23687317495381e-09
    sum de = -2.6324508830466115e-13
Info: cfl dt = 0.0015643491414959253 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0399e+04 | 11520 |      1 | 3.790e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.860530474092197 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.026589341118445, dt = 0.0015643491414959253 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (1.9%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 305.81 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236111111111112
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.885157153071715e-27,-3.87355099779017e-27,4.8003980274388196e-17)
    sum a = (-4.619109016190471e-25,5.222012736118628e-26,-8.683839307640833e-17)
    sum e = 1.236872764656593e-09
    sum de = -2.6128056037501314e-13
Info: cfl dt = 0.0015643795424515618 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9938e+04 | 11520 |      1 | 3.848e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.635265875468868 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.028153690259941, dt = 0.0015643795424515618 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.1%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.62 us    (0.5%)
   LB compute        : 302.12 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236111111111112
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.763172635630882e-27,-3.628766983787318e-27,4.7866959907914264e-17)
    sum a = (-1.4973292514336483e-25,3.045376641066074e-25,-8.831228777767291e-17)
    sum e = 1.2368723574512194e-09
    sum de = -2.592827322104232e-13
Info: cfl dt = 0.001564410190331289 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9887e+04 | 11520 |      1 | 3.854e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.610901676163643 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.029718069802393, dt = 0.001564410190331289 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (1.9%)
   patch tree reduce : 2.42 us    (0.7%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.4%)
   LB compute        : 319.76 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236111111111112
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.7506907312341356e-27,-2.9249262636374754e-27,4.772765039959199e-17)
    sum a = (-1.9497012043370487e-25,-3.791780655208821e-25,-8.976129708954044e-17)
    sum e = 1.2368719533893392e-09
    sum de = -2.572522467380757e-13
Info: cfl dt = 0.0015644411089149465 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0004e+04 | 11520 |      1 | 3.840e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.668138408690078 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.031282479992725, dt = 0.0015644411089149465 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.5%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.4%)
   LB compute        : 342.45 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235850694444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.402584286391553e-27,-4.055578770242716e-27,4.7586090713952986e-17)
    sum a = (2.8251889131161434e-25,1.2774813086589622e-25,-9.11852427081009e-17)
    sum e = 1.2368715525215912e-09
    sum de = -2.5518974895375315e-13
Info: cfl dt = 0.001564472315585926 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0232e+04 | 11520 |      1 | 3.811e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.780021485593533 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.03284692110164, dt = 0.001564472315585926 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (1.7%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.3%)
   LB compute        : 347.02 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235850694444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.2402587592398394e-27,-3.479330850592943e-27,4.7442320086642573e-17)
    sum a = (5.156891867124271e-25,-2.5796629192408185e-25,-9.258395370947848e-17)
    sum e = 1.236871154897609e-09
    sum de = -2.5309588451866573e-13
Info: cfl dt = 0.0015645038209565769 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0301e+04 | 11520 |      1 | 3.802e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.814147484250723 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.034411393417225, dt = 0.0015645038209565769 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.7%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 316.49 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236111111111112
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.224942328316466e-27,-4.180051094643599e-27,4.729637801495574e-17)
    sum a = (-3.4502549477398564e-25,2.2532888568312373e-25,-9.395726620184289e-17)
    sum e = 1.2368707605660138e-09
    sum de = -2.509713006266489e-13
Info: cfl dt = 0.001564535628690106 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0281e+04 | 11520 |      1 | 3.804e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.804795534577543 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.035975897238182, dt = 0.001564535628690106 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (2.2%)
   patch tree reduce : 1.80 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 262.46 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236111111111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.996861623503293e-27,-3.43113683083884e-27,4.714830424809346e-17)
    sum a = (-1.530496445172335e-25,-1.9521698476510717e-25,-9.530502367139399e-17)
    sum e = 1.2368703695744186e-09
    sum de = -2.4881664438160695e-13
Info: cfl dt = 0.0015645677355225478 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0196e+04 | 11520 |      1 | 3.815e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.763374883392338 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.037540432866872, dt = 0.0015645677355225478 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (1.9%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.4%)
   LB compute        : 312.26 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236111111111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.9115686101255286e-27,-4.06077956374136e-27,4.6998138775725446e-17)
    sum a = (-3.728622218961286e-25,2.586347672484409e-25,-9.662707829263441e-17)
    sum e = 1.2368699819694296e-09
    sum de = -2.4663256387282764e-13
Info: cfl dt = 0.001564600131482612 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0313e+04 | 11520 |      1 | 3.800e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.820772077856388 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.039105000602395, dt = 0.001564600131482612 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (2.0%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 316.94 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (71.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2359375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.1605740289213114e-27,-3.3063177868713806e-27,4.6845921814332357e-17)
    sum a = (3.996927688360673e-25,-5.994642618277204e-26,-9.792328936538965e-17)
    sum e = 1.2368695977966456e-09
    sum de = -2.4441970808573664e-13
Info: cfl dt = 0.001564632800301135 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0346e+04 | 11520 |      1 | 3.796e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.837397640375187 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.040669600733877, dt = 0.001564632800301135 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.7%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 317.73 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.367851559739909e-27,-3.657891427379726e-27,4.6691693797872613e-17)
    sum a = (-1.8655731687029808e-25,7.22563576744962e-28,-9.919352408362955e-17)
    sum e = 1.2368692171006574e-09
    sum de = -2.421787264829974e-13
Info: cfl dt = 0.0015646657199972532 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0207e+04 | 11520 |      1 | 3.814e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.769883563646562 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.042234233534178, dt = 0.0015646657199972532 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.8%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 314.61 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.658463326524846e-27,-3.63882185121803e-27,4.6535495365659356e-17)
    sum a = (-2.109011910787517e-25,-2.2292265189108433e-25,-1.0043765618170458e-16)
    sum e = 1.2368688399250497e-09
    sum de = -2.3991026760436463e-13
Info: cfl dt = 0.0015646988636220148 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0259e+04 | 11520 |      1 | 3.807e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.795220106099853 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.043798899254176, dt = 0.0015646988636220148 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    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   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 314.52 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.29856841641867e-27,-4.143992259719667e-27,4.637736735371949e-17)
    sum a = (-5.077714986900913e-25,1.2370815447614944e-25,-1.0165556882316748e-16)
    sum e = 1.236868466312403e-09
    sum de = -2.376149815939259e-13
Info: cfl dt = 0.001564732200136784 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0305e+04 | 11520 |      1 | 3.801e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.81832626271217 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.045363598117798, dt = 0.001564732200136784 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.5%)
   patch tree reduce : 19.46 us   (5.4%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 322.60 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.264650668888211e-27,-3.651997194747929e-27,4.6217350778643164e-17)
    sum a = (-4.0508703185286097e-25,1.6012619087105532e-25,-1.0284715072817782e-16)
    sum e = 1.2368680963042934e-09
    sum de = -2.3529351786540047e-13
Info: cfl dt = 0.0015647656953996498 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0277e+04 | 11520 |      1 | 3.805e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.804593270920888 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.046928330317935, dt = 0.0015647656953996498 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.6%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 332.35 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.706432166700405e-27,-3.3891837632831106e-27,4.6055486831987e-17)
    sum a = (2.866642704496003e-25,-2.4714170705557048e-27,-1.0401229988383264e-16)
    sum e = 1.2368677299412897e-09
    sum de = -2.3294652627517277e-13
Info: cfl dt = 0.0015647993132299357 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9656e+04 | 11520 |      1 | 3.885e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.501433443317046 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.048493096013335, dt = 0.0015647993132299357 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.7%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 1.19 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 322.63 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.695276370575948e-27,-3.5465944465087405e-27,4.589181686382988e-17)
    sum a = (-9.186681636005044e-26,-1.9011465962337069e-25,-1.0515092032075909e-16)
    sum e = 1.2368673672629592e-09
    sum de = -2.3057465572368857e-13
Info: cfl dt = 0.0015648330165198244 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0245e+04 | 11520 |      1 | 3.809e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.789596605619977 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.050057895326565, dt = 0.0015648330165198244 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.6%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.4%)
   LB compute        : 328.43 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.2681178645539735e-27,-3.963351365533426e-27,4.57263823758313e-17)
    sum a = (1.0374681558922e-25,-1.0211862050457781e-25,-1.0626292428950086e-16)
    sum e = 1.2368670083078623e-09
    sum de = -2.281785560758832e-13
Info: cfl dt = 0.0015648667683584062 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0282e+04 | 11520 |      1 | 3.804e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.808216989298215 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.051622728343085, dt = 0.0015648667683584062 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (1.8%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 323.76 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236371527777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.585019548404691e-27,-4.081929457302513e-27,4.5559225006554163e-17)
    sum a = (-2.31407573124339e-26,3.3187026097894853e-25,-1.0734823069405023e-16)
    sum e = 1.2368666531135575e-09
    sum de = -2.2575887528242298e-13
Info: cfl dt = 0.0015649005331344577 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0313e+04 | 11520 |      1 | 3.800e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.82385582742352 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.053187595111443, dt = 0.0015649005331344577 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.9%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 302.80 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (57.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.441477647842113e-27,-3.1950208060003954e-27,4.5390386523212047e-17)
    sum a = (9.083220517338683e-26,6.160527127709959e-25,-1.0840676592595974e-16)
    sum e = 1.2368663017165997e-09
    sum de = -2.2331626216000657e-13
Info: cfl dt = 0.0015649342775941179 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7981e+04 | 11520 |      1 | 4.117e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.683723628876603 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.0547524956445775, dt = 0.0015649342775941179 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.8%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.5%)
   LB compute        : 302.81 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.654363461719947e-27,-2.0192947557402393e-27,4.5219908808102696e-17)
    sum a = (-2.272115729296329e-25,-4.842992774720105e-25,-1.0943846312146768e-16)
    sum e = 1.236865954152536e-09
    sum de = -2.20851363889673e-13
Info: cfl dt = 0.0015649679718089606 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8223e+04 | 11520 |      1 | 4.082e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.802275799173568 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.056317429922172, dt = 0.0015649679718089606 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.6%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.58 us    (0.5%)
   LB compute        : 326.09 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (71.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.0469107810783086e-27,-3.606923651093013e-27,4.5047833849273167e-17)
    sum a = (2.859028742813988e-25,3.6854903048791973e-25,-1.1044326571339051e-16)
    sum e = 1.236865610455914e-09
    sum de = -2.183648269967057e-13
Info: cfl dt = 0.0015650015900305738 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0268e+04 | 11520 |      1 | 3.806e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.80257855820706 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.05788239789398, dt = 0.0015650015900305738 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.7%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 324.53 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (73.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.912322819252697e-27,-2.4225296116684496e-27,4.487420372087294e-17)
    sum a = (1.532861072616385e-25,-1.4719077728122755e-25,-1.1142111944531545e-16)
    sum e = 1.2368652706602757e-09
    sum de = -2.1585729727583694e-13
Info: cfl dt = 0.0015650351114223173 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0324e+04 | 11520 |      1 | 3.799e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.830552330614365 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.059447399484011, dt = 0.0015650351114223173 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.7%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 315.69 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.057945037214733e-27,-3.0296355727435112e-27,4.46990605854643e-17)
    sum a = (-1.1201399693466476e-25,4.433156378244282e-26,-1.1237198078992804e-16)
    sum e = 1.2368649347981571e-09
    sum de = -2.1332941977165742e-13
Info: cfl dt = 0.0015650685206286684 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6878e+04 | 11520 |      1 | 4.286e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.145080501395181 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.061012434595433, dt = 0.0015650685206286684 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.7%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 314.97 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.6800207096465915e-27,-2.8212571132311687e-27,4.4522446670052726e-17)
    sum a = (-1.8563088218840626e-25,2.837968996340145e-26,-1.1329581149795644e-16)
    sum e = 1.2368646029010932e-09
    sum de = -2.1078183756363418e-13
Info: cfl dt = 0.0015651018081759283 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8965e+04 | 11520 |      1 | 3.977e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.16617494146609 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.062577503116062, dt = 0.0015651018081759283 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.9%)
   patch tree reduce : 1.76 us    (0.6%)
   gen split merge   : 1.48 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.5%)
   LB compute        : 290.26 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.340928973534992e-27,-2.7546869564485234e-27,4.4344404261420933e-17)
    sum a = (-4.8517925173198105e-25,-2.0373519107675316e-25,-1.1419258199752794e-16)
    sum e = 1.236864274999616e-09
    sum de = -2.0821519337705695e-13
Info: cfl dt = 0.0015651072774829277 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0307e+04 | 11520 |      1 | 3.801e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.823004007357975 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.064142604924237, dt = 0.0015651072774829277 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.7%)
   patch tree reduce : 1.91 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 337.08 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (72.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.343070060928466e-27,-3.297649797706973e-27,4.416497885172513e-17)
    sum a = (-1.5607095882037916e-25,-1.694862322903485e-25,-1.1506225233853092e-16)
    sum e = 1.2368639511290182e-09
    sum de = -2.0563017344360432e-13
Info: cfl dt = 0.0015651109245558468 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9968e+04 | 11520 |      1 | 3.844e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.65728720497725 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.0657077122017204, dt = 0.0015651109245558468 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.7%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 311.39 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236631944444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.368033869721958e-27,-3.5275248703470454e-27,4.3984213099886485e-17)
    sum a = (-3.265682253668641e-26,-1.3368674360221471e-25,-1.159048072041584e-16)
    sum e = 1.2368636313178913e-09
    sum de = -2.030274217716178e-13
Info: cfl dt = 0.0015651146625092088 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0328e+04 | 11520 |      1 | 3.798e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.8335299853959 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 4.0672728231262765, dt = 0.0015651146625092088 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.7%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.54 us    (0.4%)
   LB compute        : 329.26 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236631944444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3909173611159925e-27,-3.6743606067920986e-27,4.3802149440750483e-17)
    sum a = (2.489772404410253e-25,8.17592475552188e-26,-1.1672023835972771e-16)
    sum e = 1.2368633155934804e-09
    sum de = -2.0040757624096097e-13
Info: cfl dt = 0.0015651184591139072 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7582e+04 | 11520 |      1 | 4.177e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.490216775524273 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.0688379377887856, dt = 0.0015651184591139072 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.7%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 328.07 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236631944444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.9768734286299006e-27,-3.418654926442094e-27,4.3618830319547556e-17)
    sum a = (-1.6761325319170344e-25,2.860200654949016e-25,-1.175085456280083e-16)
    sum e = 1.2368630039820507e-09
    sum de = -1.9777127344808788e-13
Info: cfl dt = 0.001565122284392728 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0188e+04 | 11520 |      1 | 3.816e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.765135495386183 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.070403056247899, dt = 0.001565122284392728 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (2.0%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 284.32 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236631944444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.414494291643179e-27,-2.781904442424761e-27,4.343429817899285e-17)
    sum a = (5.025935886828412e-25,-1.4886473934865781e-25,-1.182697321791959e-16)
    sum e = 1.2368626965088725e-09
    sum de = -1.951191483828902e-13
Info: cfl dt = 0.0015651261114189555 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7279e+04 | 11520 |      1 | 4.223e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.34194339346749 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.071968178532292, dt = 0.0015651261114189555 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (2.0%)
   patch tree reduce : 1.66 us    (0.6%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.5%)
   LB compute        : 281.42 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236805555555557
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.7091451532389985e-27,-3.377048578452941e-27,4.324859545801467e-17)
    sum a = (4.685339387797871e-25,-3.3091054121866536e-25,-1.1900381198397121e-16)
    sum e = 1.2368623931982348e-09
    sum de = -1.924518336707999e-13
Info: cfl dt = 0.0015651299170277167 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0278e+04 | 11520 |      1 | 3.805e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.809136833163302 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.073533304643711, dt = 0.0015651299170277167 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.7%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.5%)
   LB compute        : 312.06 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236805555555557
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.435869364782876e-27,-4.012065464637393e-27,4.306176456789404e-17)
    sum a = (-4.656776629903317e-25,-2.736685276551883e-25,-1.1971080238316253e-16)
    sum e = 1.2368620940734414e-09
    sum de = -1.8976995980325485e-13
Info: cfl dt = 0.00156513368241874 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8473e+04 | 11520 |      1 | 4.046e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.926374412384403 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.075098434560739, dt = 0.00156513368241874 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (1.9%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 307.91 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236805555555557
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.964391524233155e-27,-4.411313045549976e-27,4.28738478930083e-17)
    sum a = (-4.038700461741783e-25,-2.1161265962936617e-25,-1.203907301829327e-16)
    sum e = 1.236861799156813e-09
    sum de = -1.8707415545457194e-13
Info: cfl dt = 0.0015651373936359809 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7754e+04 | 11520 |      1 | 4.151e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.574357817888268 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.076663568243158, dt = 0.0015651373936359809 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.7%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (0.4%)
   LB compute        : 328.26 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236805555555557
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.366646991455653e-27,-4.672219519398625e-27,4.268488777041398e-17)
    sum a = (1.823405135015974e-25,-1.1361722821051347e-25,-1.2104362637576847e-16)
    sum e = 1.2368615084696903e-09
    sum de = -1.843650463964162e-13
Info: cfl dt = 0.0015651410419055447 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0227e+04 | 11520 |      1 | 3.811e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.784339372373378 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.0782287056367945, dt = 0.0015651410419055447 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.8%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 307.53 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (64.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236805555555557
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.141911942320209e-27,-4.791664410084153e-27,4.2494926486820803e-17)
    sum a = (5.4378317975296975e-25,-9.694279081472713e-26,-1.2166952878049492e-16)
    sum e = 1.2368612220324405e-09
    sum de = -1.8164325688748186e-13
Info: cfl dt = 0.0015651446238239093 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0296e+04 | 11520 |      1 | 3.802e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.818125247245545 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.0797938466787, dt = 0.0015651446238239093 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (1.6%)
   patch tree reduce : 2.04 us    (0.5%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 373.92 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236805555555557
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.261816142361585e-27,-4.9118027399028324e-27,4.2304006265143835e-17)
    sum a = (3.988349846283576e-25,5.30938606689585e-26,-1.2226848366108822e-16)
    sum e = 1.2368609398644525e-09
    sum de = -1.789094075413522e-13
Info: cfl dt = 0.0015651481413910962 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8126e+04 | 11520 |      1 | 4.096e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.756502769922715 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.081358991302524, dt = 0.0015651481413910962 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (1.9%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 307.18 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236805555555557
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.7742676617613226e-27,-4.7354958402987956e-27,4.2112169249693333e-17)
    sum a = (-5.5212247876826235e-25,-1.539115893597421e-25,-1.2284054081458582e-16)
    sum e = 1.236860661984146e-09
    sum de = -1.761641174660263e-13
Info: cfl dt = 0.001565151601887788 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0251e+04 | 11520 |      1 | 3.808e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.795789997289866 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.082924139443915, dt = 0.001565151601887788 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.9%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 308.38 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236631944444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.15023321191804e-27,-5.1517326799736165e-27,4.191945750342131e-17)
    sum a = (1.5953884792527508e-25,2.771384970774837e-25,-1.2338575734394728e-16)
    sum e = 1.2368603884089765e-09
    sum de = -1.7340800228922537e-13
Info: cfl dt = 0.0015651550176005841 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8268e+04 | 11520 |      1 | 4.075e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.826304250540062 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.084489291045803, dt = 0.0015651550176005841 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 22.26 us   (6.5%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 306.02 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236631944444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.9802798543016475e-27,-4.352197359448721e-27,4.172591299291357e-17)
    sum a = (-1.7038076877211529e-25,1.8589716281553685e-26,-1.2390419835354613e-16)
    sum e = 1.2368601191554268e-09
    sum de = -1.706416749659278e-13
Info: cfl dt = 0.001565158405403592 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0033e+04 | 11520 |      1 | 3.836e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.689410095512617 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.086054446063404, dt = 0.001565158405403592 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.6%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 352.54 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236631944444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.442171086975265e-27,-4.525730502520148e-27,4.153157757514971e-17)
    sum a = (-5.074733198628357e-25,1.5017811306684875e-25,-1.2439593113092682e-16)
    sum e = 1.236859854239027e-09
    sum de = -1.6786574520719248e-13
Info: cfl dt = 0.0015651617862096562 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7967e+04 | 11520 |      1 | 4.119e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.678751358679584 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.087619604468808, dt = 0.0015651617862096562 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (2.1%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.5%)
   LB compute        : 266.75 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236631944444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.375661700186636e-27,-4.195133395789667e-27,4.133649299751752e-17)
    sum a = (-4.593555784133799e-25,-2.956283581238634e-25,-1.2486103332780022e-16)
    sum e = 1.2368595936743496e-09
    sum de = -1.6508082037975337e-13
Info: cfl dt = 0.0015651651843077796 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7936e+04 | 11520 |      1 | 4.124e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.663828166062338 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.089184766255017, dt = 0.0015651651843077796 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 22.04 us   (5.9%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1.65 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 333.68 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236631944444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6974782279634374e-27,-5.008710858760902e-27,4.114070087525817e-17)
    sum a = (-6.904642792713301e-26,1.3608742988118884e-25,-1.2529958631336262e-16)
    sum e = 1.236859337475012e-09
    sum de = -1.6228750397278786e-13
Info: cfl dt = 0.0015651686266068456 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9658e+04 | 11520 |      1 | 3.884e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.506175184961393 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.0907499314393245, dt = 0.0015651686266068456 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.5%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 350.58 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236458333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9214590679717126e-27,-4.459680425087367e-27,4.094424268985293e-17)
    sum a = (2.7740547114374743e-25,4.655916765378209e-25,-1.2571167632327193e-16)
    sum e = 1.2368590856536904e-09
    sum de = -1.5948639729909566e-13
Info: cfl dt = 0.0015651721418086298 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0258e+04 | 11520 |      1 | 3.807e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.799768818015771 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.092315100065932, dt = 0.0015651721418086298 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.5%)
   patch tree reduce : 1.68 us    (0.4%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 354.18 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236458333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.576759048800877e-27,-3.4850517234414516e-27,4.0747159780984137e-17)
    sum a = (-3.0112039605843164e-25,3.5172342336110614e-25,-1.260973971352936e-16)
    sum e = 1.236858838222113e-09
    sum de = -1.5667809722281e-13
Info: cfl dt = 0.0015651757595344909 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9817e+04 | 11520 |      1 | 3.864e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.5841252099041 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 4.09388027220774, dt = 0.0015651757595344909 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.7%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 336.87 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236458333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.680142249634624e-27,-3.000684488934392e-27,4.054949333188645e-17)
    sum a = (-1.7840108578615774e-25,1.7242918797144792e-25,-1.2645684940023991e-16)
    sum e = 1.2368585951910763e-09
    sum de = -1.5386319769793037e-13
Info: cfl dt = 0.0015651795094328684 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0238e+04 | 11520 |      1 | 3.810e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.789994336189443 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.095445447967275, dt = 0.0015651795094328684 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (1.9%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 306.88 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236458333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4873661706182133e-27,-2.8985755765776783e-27,4.0351284359426686e-17)
    sum a = (-2.5151384079009735e-25,-1.0133642116238173e-25,-1.267901370692331e-16)
    sum e = 1.2368583565704448e-09
    sum de = -1.5104228921108097e-13
Info: cfl dt = 0.0015651834202933283 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7567e+04 | 11520 |      1 | 4.179e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.483479393809043 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.097010627476707, dt = 0.0015651834202933283 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (1.9%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 307.10 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236458333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0380176123353582e-27,-3.26817863454799e-27,4.01525737115083e-17)
    sum a = (2.1536693909625412e-25,-4.485081100534745e-25,-1.270973700831034e-16)
    sum e = 1.2368581223691585e-09
    sum de = -1.4821595839809047e-13
Info: cfl dt = 0.0015651875191936852 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8447e+04 | 11520 |      1 | 4.050e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.913767009879571 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.0985758108970005, dt = 0.0014241891029991294 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (2.1%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 267.28 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.725909232422692e-27,-4.174503581578379e-27,3.99713225840552e-17)
    sum a = (-4.083420351438791e-25,-1.415295401981701e-25,-1.2735418548191185e-16)
    sum e = 1.236857913492404e-09
    sum de = -1.4563959962037243e-13
Info: cfl dt = 0.001565191450677872 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0332e+04 | 11520 |      1 | 3.798e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.499642972841185 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 2323                                                    [SPH][rank=0]
Info: time since start : 1058.994125113 (s)                                           [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[-1.78975099e-30 -3.27337566e-18 -2.21126993e-14 ...  1.72907503e-11
 -3.12417650e-13 -1.10368135e-11]
(11520, 3)
[[-1.78975099e-30 -3.27337566e-18 -2.21126993e-14  1.66563798e-12
   2.83550153e-11]
 [ 9.18310286e-07 -4.11850638e-31 -2.35144032e-21  1.14028139e-08
   3.10458715e-09]
 [ 2.33582080e-05  1.74421578e-05 -3.74499263e-12  1.96379151e-09
  -3.00754299e-11]
 ...
 [ 3.34019217e-05  3.56732220e-05  1.34641984e-05 -1.06071699e-14
  -1.78156163e-10]
 [ 8.91482238e-06 -2.91634280e-11 -2.76289048e-21  8.90419665e-09
  -1.28921141e-12]
 [-9.42040733e-46 -1.15938415e-30  1.72907503e-11 -3.12417650e-13
  -1.10368135e-11]]
compute original rho
Info: Dumping state to _to_trash/dusty_settle/dump/0000041.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 13.13 us   (72.6%)
Info: dump to _to_trash/dusty_settle/dump/0000041.sham                      [Shamrock Dump][rank=0]
              - took 1.19 ms, bandwidth = 2.50 GB/s
Info: evolve_until (target_time = 4.20s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 4.1, dt = 0.001565191450677872 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.34 us    (1.0%)
   patch tree reduce : 1.26 us    (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 332.88 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236024305555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6420638673052495e-27,-4.1764105391945486e-27,3.9771806024840046e-17)
    sum a = (5.189129852424534e-25,-4.086228779928059e-25,-1.2761218179942034e-16)
    sum e = 1.2368576873741981e-09
    sum de = -1.428049639479163e-13
Info: cfl dt = 0.0015651959561086845 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7633e+04 | 11520 |      1 | 4.169e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.516001479901101 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.101565191450677, dt = 0.0015651959561086845 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.0%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 302.79 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236024305555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.163469325441954e-27,-5.039568900186191e-27,3.957186604707812e-17)
    sum a = (-4.1000767594171154e-25,-2.4838712373871245e-25,-1.278442787615911e-16)
    sum e = 1.2368574660748058e-09
    sum de = -1.3996614935918934e-13
Info: cfl dt = 0.0015652007298360639 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0431e+04 | 11520 |      1 | 3.786e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.884453349942902 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.103130387406786, dt = 0.0015652007298360639 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (2.0%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 301.48 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.33 us    (61.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236024305555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.786299207000981e-27,-5.271004210875856e-27,3.9371582450037634e-17)
    sum a = (1.6644688856974084e-25,8.430278229562238e-26,-1.2805080765839583e-16)
    sum e = 1.2368572492213248e-09
    sum de = -1.3712418039964625e-13
Info: cfl dt = 0.001565205767191402 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8268e+04 | 11520 |      1 | 4.075e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.826604493589473 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.104695588136622, dt = 0.001565205767191402 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (2.0%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.5%)
   LB compute        : 275.01 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236024305555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4838989749524506e-27,-4.883718455010154e-27,3.9170994957829354e-17)
    sum a = (7.845570352488004e-26,2.0350774304107912e-25,-1.2823190480979678e-16)
    sum e = 1.2368570368178795e-09
    sum de = -1.3427961547651032e-13
Info: cfl dt = 0.0015652110772128745 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7611e+04 | 11520 |      1 | 4.172e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.505227861098259 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.106260793903813, dt = 0.0015652110772128745 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.8%)
   patch tree reduce : 1.80 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 306.14 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.236024305555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.564337914398147e-27,-4.463494340319706e-27,3.897014323287296e-17)
    sum a = (-5.256303301253022e-25,3.06867619594e-25,-1.283877121074397e-16)
    sum e = 1.2368568288680889e-09
    sum de = -1.3143301949288496e-13
Info: cfl dt = 0.0015652166639841271 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0163e+04 | 11520 |      1 | 3.819e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.753459095797986 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.107826004981026, dt = 0.0015652166639841271 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (2.2%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 1.10 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.4%)
   LB compute        : 265.25 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235850694444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2780083224001582e-27,-3.874591156489899e-27,3.876906671072013e-17)
    sum a = (3.5736801790496796e-25,5.0094042978940545e-27,-1.2851837663792517e-16)
    sum e = 1.2368566253746842e-09
    sum de = -1.2858495168071445e-13
Info: cfl dt = 0.001565222526633736 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8204e+04 | 11520 |      1 | 4.085e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.79531906901267 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.1093912216450095, dt = 0.001565222526633736 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.8%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 294.29 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235677083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5199578098763835e-27,-4.173290063095362e-27,3.8567804593364986e-17)
    sum a = (-5.263813247065064e-25,3.5479119808617306e-25,-1.2862405067433735e-16)
    sum e = 1.23685642633953e-09
    sum de = -1.2573596882341538e-13
Info: cfl dt = 0.0015652286594064137 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0304e+04 | 11520 |      1 | 3.801e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.822597134589689 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.110956444171643, dt = 0.0015652286594064137 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.7%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 311.53 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235677083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0096473778701196e-27,-3.334748791330635e-27,3.8366395841240724e-17)
    sum a = (1.7385212507267696e-26,-8.930941283698381e-26,-1.287048921374062e-16)
    sum e = 1.236856231763621e-09
    sum de = -1.2288662170050317e-13
Info: cfl dt = 0.0015652350518806876 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0092e+04 | 11520 |      1 | 3.828e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.71907445881016 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.11252167283105, dt = 0.0015652350518806876 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (1.9%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 1.23 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 324.05 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 18.57 us   (5.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235677083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4721712796828735e-27,-3.799699730109423e-27,3.816487916506341e-17)
    sum a = (-1.2178871495558317e-26,1.6672773141866762e-25,-1.2876106247699245e-16)
    sum e = 1.2368560416470996e-09
    sum de = -1.2003745848740532e-13
Info: cfl dt = 0.001565241689325175 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0193e+04 | 11520 |      1 | 3.815e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.768476675936574 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.11408690788293, dt = 0.001565241689325175 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.7%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 320.86 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235677083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4069880011665334e-27,-3.353991727275619e-27,3.796329302219626e-17)
    sum a = (1.1747899074304005e-25,-3.077621560757668e-26,-1.2879272913435423e-16)
    sum e = 1.2368558559892574e-09
    sum de = -1.1718902180939257e-13
Info: cfl dt = 0.0015652485531817161 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0130e+04 | 11520 |      1 | 3.823e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.73749691449103 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.115652149572255, dt = 0.0015652485531817161 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.8%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 309.20 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235677083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.697538997957454e-27,-3.5634103454876904e-27,3.776167560634168e-17)
    sum a = (3.7175410616135084e-25,-6.444074389256038e-25,-1.288000637903394e-16)
    sum e = 1.2368556747885433e-09
    sum de = -1.14341850819809e-13
Info: cfl dt = 0.0015652556216596677 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9397e+04 | 11520 |      1 | 3.919e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.379233374668582 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.117217398125437, dt = 0.0015652556216596677 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.8%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 296.12 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235677083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.467949874889942e-27,-5.0465032915177166e-27,3.7560064842146315e-17)
    sum a = (-2.658049278852383e-25,-2.30916618218067e-25,-1.2878324373483082e-16)
    sum e = 1.2368554980425706e-09
    sum de = -1.1149647964286532e-13
Info: cfl dt = 0.0015652628704225973 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0150e+04 | 11520 |      1 | 3.821e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.747884095501998 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.118782653747097, dt = 0.0015652628704225973 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (1.9%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 314.98 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235677083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5643986843921633e-27,-5.077361332943005e-27,3.735849837620468e-17)
    sum a = (-4.706211905705763e-25,4.374949097407456e-25,-1.2874244799998825e-16)
    sum e = 1.2368553257481255e-09
    sum de = -1.0865343795263641e-13
Info: cfl dt = 0.0015652596908579941 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7355e+04 | 11520 |      1 | 4.211e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.380458896080327 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.120347916617519, dt = 0.0015652596908579941 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.8%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 316.22 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235677083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.927456940194021e-28,-3.870257161907695e-27,3.715701493988139e-17)
    sum a = (-1.8093213862216455e-26,1.723640046929316e-25,-1.2867786331454951e-16)
    sum e = 1.2368551579023187e-09
    sum de = -1.0581327024139531e-13
Info: cfl dt = 0.0015652505876549035 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9965e+04 | 11520 |      1 | 3.844e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.657303465447907 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.121913176308378, dt = 0.0015652505876549035 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (1.9%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 304.31 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235677083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.819098125440174e-28,-3.8418261574484405e-27,3.695565238462399e-17)
    sum a = (-9.276828723314876e-26,7.575170696906496e-25,-1.2858968190135123e-16)
    sum e = 1.2368549945008231e-09
    sum de = -1.0297650799391188e-13
Info: cfl dt = 0.0015652415189629726 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0135e+04 | 11520 |      1 | 3.823e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.740320431875015 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.123478426896033, dt = 0.0015652415189629726 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.8%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 309.58 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235677083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.995353205248955e-28,-2.1694243280677673e-27,3.6754447488609945e-17)
    sum a = (-4.152375938839481e-25,1.0521968030803603e-25,-1.2847809547407098e-16)
    sum e = 1.2368548355378257e-09
    sum de = -1.0014366699483028e-13
Info: cfl dt = 0.001565232468770152 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7983e+04 | 11520 |      1 | 4.117e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.687664550955795 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.125043668414996, dt = 0.001565232468770152 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.8%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 302.40 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235677083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.985523517396786e-29,-2.5249852435917395e-27,3.65534367319083e-17)
    sum a = (3.213091829810351e-25,1.6110948756186563e-25,-1.2834330692067806e-16)
    sum e = 1.2368546810067347e-09
    sum de = -9.731525778933504e-14
Info: cfl dt = 0.0015652234245169296 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7929e+04 | 11520 |      1 | 4.125e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.661056429800503 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.126608900883766, dt = 0.0015652234245169296 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.7%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 19.05 us   (5.3%)
   LB compute        : 322.52 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235677083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.735885429461868e-28,-2.2401551196493276e-27,3.635265626919489e-17)
    sum a = (7.837387770716803e-26,-1.8161032209438776e-25,-1.2818551630469213e-16)
    sum e = 1.236854530900159e-09
    sum de = -9.449178790560876e-14
Info: cfl dt = 0.0015652143773751737 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9074e+04 | 11520 |      1 | 3.962e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.220978158852464 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.128174124308283, dt = 0.0015652143773751737 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.8%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 321.25 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235677083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.827480165032021e-28,-2.776530289142829e-27,3.615214194491198e-17)
    sum a = (1.3513325763397094e-25,3.973364626616149e-25,-1.2800493114274436e-16)
    sum e = 1.2368543852099214e-09
    sum de = -9.167375678584735e-14
Info: cfl dt = 0.0015652053224114752 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0107e+04 | 11520 |      1 | 3.826e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.726213928894394 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.129739338685658, dt = 0.0015652053224114752 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.02 us    (2.0%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 325.62 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235677083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1726055741609698e-27,-1.6925115642420976e-27,3.5951929272637755e-17)
    sum a = (-4.8463074137765736e-26,4.0285207752671032e-25,-1.2780176470286396e-16)
    sum e = 1.2368542439270691e-09
    sum de = -8.886166212889421e-14
Info: cfl dt = 0.001565196258631867 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9100e+04 | 11520 |      1 | 3.959e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.233540046440497 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.13130454400807, dt = 0.001565196258631867 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.8%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.52 us    (0.4%)
   LB compute        : 325.34 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235677083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.65267273348356e-28,-1.1063821369449009e-27,3.575205342728063e-17)
    sum a = (2.826499513077802e-25,-8.173289686815901e-26,-1.2757623176166803e-16)
    sum e = 1.2368541070418675e-09
    sum de = -8.605599433797056e-14
Info: cfl dt = 0.0015651871889103236 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8740e+04 | 11520 |      1 | 4.008e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.05736348934817 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.132869740266702, dt = 0.0015651871889103236 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.8%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.4%)
   LB compute        : 314.35 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235243055555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.661480163033521e-27,-1.5891891334023671e-27,3.5552549245334067e-17)
    sum a = (2.470827647292525e-25,-1.9778132267950533e-25,-1.273285490373589e-16)
    sum e = 1.2368539745438247e-09
    sum de = -8.325723946626314e-14
Info: cfl dt = 0.0015651781198039764 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7539e+04 | 11520 |      1 | 4.183e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.469730724826656 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.134434927455612, dt = 0.0015651781198039764 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (1.8%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 332.73 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235243055555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9769949686179333e-27,-1.9971047034793572e-27,3.535345122130816e-17)
    sum a = (-1.1159932033303952e-25,-1.7441381077053055e-25,-1.270589412429402e-16)
    sum e = 1.2368538464216898e-09
    sum de = -8.046587854943317e-14
Info: cfl dt = 0.0015651690612640214 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0096e+04 | 11520 |      1 | 3.828e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.720378331839806 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.136000105575415, dt = 0.0015651690612640214 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.7%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 329.32 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (71.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235243055555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5214054581367049e-27,-2.2564509392784127e-27,3.515479348960451e-17)
    sum a = (6.66277122306969e-26,1.6179876606021927e-25,-1.26767633385833e-16)
    sum e = 1.2368537226634628e-09
    sum de = -7.768238632751766e-14
Info: cfl dt = 0.0015651600262542584 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8135e+04 | 11520 |      1 | 4.095e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.761312359909638 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.137565274636679, dt = 0.0015651600262542584 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.7%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 312.00 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235243055555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7835254504683705e-27,-1.716261854552573e-27,3.495660983026449e-17)
    sum a = (-4.450575569269074e-25,2.0102661782265928e-25,-1.264548561065947e-16)
    sum e = 1.2368536032564019e-09
    sum de = -7.490723432673635e-14
Info: cfl dt = 0.0015651510302878236 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0193e+04 | 11520 |      1 | 3.815e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.76768665412666 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.139130434662933, dt = 0.0015651510302878236 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.9%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 300.61 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235243055555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.0800135494875825e-28,-1.3832377108560585e-27,3.475893365520275e-17)
    sum a = (3.5400067747437916e-25,2.299388690403219e-25,-1.2612084229187077e-16)
    sum e = 1.236853488187033e-09
    sum de = -7.214088627448731e-14
Info: cfl dt = 0.0015651420909002845 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0039e+04 | 11520 |      1 | 3.835e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.692215017544616 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.140695585693221, dt = 0.0015651420909002845 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.8%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 296.25 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (6.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235069444444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8507890463841685e-27,-1.006353541987645e-27,3.456179800743854e-17)
    sum a = (1.290039491360355e-25,-7.994382390462541e-26,-1.2576582942361415e-16)
    sum e = 1.2368533774411597e-09
    sum de = -6.938380251236828e-14
Info: cfl dt = 0.0015651332270742386 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9921e+04 | 11520 |      1 | 3.850e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.634781729634119 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.142260727784121, dt = 0.0015651332270742386 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.5%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 1.22 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 358.91 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235069444444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8799134899765756e-27,-1.390345461970872e-27,3.436523555172664e-17)
    sum a = (1.0699973856283863e-25,-9.774163269611888e-26,-1.2539005726280707e-16)
    sum e = 1.2368532710038645e-09
    sum de = -6.663643628016784e-14
Info: cfl dt = 0.0015651244586347096 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8137e+04 | 11520 |      1 | 4.094e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.761949956213561 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.143825861011195, dt = 0.0015651244586347096 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (1.8%)
   patch tree reduce : 2.20 us    (0.6%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.60 us    (0.5%)
   LB compute        : 327.72 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235069444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.03316353840329e-27,-1.537874637549078e-27,3.416927857298987e-17)
    sum a = (-4.353632778454347e-25,5.099579122769213e-25,-1.2499376923775398e-16)
    sum e = 1.236853168859534e-09
    sum de = -6.38992370208575e-14
Info: cfl dt = 0.0015651158056332194 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9501e+04 | 11520 |      1 | 3.905e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.429090851581792 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.14539098546983, dt = 0.0015651158056332194 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (1.8%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (0.4%)
   LB compute        : 317.62 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 20.69 us   (5.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235069444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.278215601581181e-28,-2.704412619294963e-28,3.397395896917905e-17)
    sum a = (-9.945928142893776e-26,2.690543836631912e-26,-1.2457721187819632e-16)
    sum e = 1.2368530709918451e-09
    sum de = -6.117264717710135e-14
Info: cfl dt = 0.001565107287739326 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8627e+04 | 11520 |      1 | 4.024e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.001212961715696 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.146956101275463, dt = 0.001565107287739326 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (1.8%)
   patch tree reduce : 2.24 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.4%)
   LB compute        : 328.01 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235069444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0436258953945948e-27,-6.024252469262818e-28,3.377930824726914e-17)
    sum a = (1.0475299577142437e-25,-1.3237475676229007e-25,-1.2414063462978993e-16)
    sum e = 1.2368529773837906e-09
    sum de = -5.845710471890126e-14
Info: cfl dt = 0.0015650989236575112 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9978e+04 | 11520 |      1 | 3.843e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.662197655155305 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.148521208563202, dt = 0.0015650989236575112 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.9%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 283.24 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (63.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234895833333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.351512870514329e-27,-9.461976971866609e-28,3.358535751873967e-17)
    sum a = (-9.637001009074313e-26,3.14335959058053e-25,-1.2368429059606817e-16)
    sum e = 1.2368528880176844e-09
    sum de = -5.575304109922453e-14
Info: cfl dt = 0.0015650907305862966 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0257e+04 | 11520 |      1 | 3.807e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.798610833852662 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.150086307486859, dt = 0.0015650907305862966 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (2.0%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.5%)
   LB compute        : 262.67 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235069444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0769109737859174e-27,-9.430772210874743e-29,3.3392137493776315e-17)
    sum a = (-3.541254965183466e-25,4.685429534885181e-26,-1.232084346976606e-16)
    sum e = 1.2368528028751673e-09
    sum de = -5.306088299889183e-14
Info: cfl dt = 0.001565082723734341 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0243e+04 | 11520 |      1 | 3.809e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.791600802885512 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.151651398217445, dt = 0.001565082723734341 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.8%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 312.65 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (63.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235069444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0788697511973425e-28,-2.3802298245461436e-28,3.3199678480019453e-17)
    sum a = (-3.8559376438080954e-26,2.0937839874234863e-25,-1.2271332536528864e-16)
    sum e = 1.236852721937219e-09
    sum de = -5.038105046295546e-14
Info: cfl dt = 0.001565074915907328 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9389e+04 | 11520 |      1 | 3.920e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.373605464868271 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.153216480941179, dt = 0.001565074915907328 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (1.7%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 344.05 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235069444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.763926844758051e-28,2.277947552406142e-28,3.3008010376199557e-17)
    sum a = (1.1218805015708605e-25,-1.0951068166398404e-25,-1.2219922282880429e-16)
    sum e = 1.2368526451841689e-09
    sum de = -4.7713959153058434e-14
Info: cfl dt = 0.0015650673171750094 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0239e+04 | 11520 |      1 | 3.810e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.789668917127186 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.154781555857086, dt = 0.0015650673171750094 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.8%)
   patch tree reduce : 2.15 us    (0.6%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.4%)
   LB compute        : 315.95 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235069444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.808124639297766e-28,-2.139259725775631e-28,3.28171626708785e-17)
    sum a = (3.105754386389667e-25,8.310451947353475e-26,-1.2166639230440556e-16)
    sum e = 1.2368525725956963e-09
    sum de = -4.50600180904219e-14
Info: cfl dt = 0.0015650599346289618 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0134e+04 | 11520 |      1 | 3.823e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.738159841411752 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.156346623174262, dt = 0.0015650599346289618 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (1.8%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 332.15 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235069444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4021339272344655e-27,6.136936328400109e-29,3.2627164432660005e-17)
    sum a = (7.674429574425953e-26,-3.0677608562842385e-25,-1.2111509925854446e-16)
    sum e = 1.2368525041508538e-09
    sum de = -4.241963028282695e-14
Info: cfl dt = 0.0015650527722334217 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0137e+04 | 11520 |      1 | 3.823e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.739281293455408 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.157911683108891, dt = 0.0015650527722334217 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (2.0%)
   patch tree reduce : 2.36 us    (0.7%)
   gen split merge   : 1.59 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.94 us    (0.6%)
   LB compute        : 304.15 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235069444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3522063096474816e-27,-7.234303756614026e-28,3.243804431414602e-17)
    sum a = (-2.587776157098703e-26,9.231200428353437e-26,-1.2054561128206802e-16)
    sum e = 1.236852439828063e-09
    sum de = -3.9793194128783707e-14
Info: cfl dt = 0.0015650458307731531 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0161e+04 | 11520 |      1 | 3.819e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.751157400013055 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.159476735881124, dt = 0.0015650458307731531 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.9%)
   patch tree reduce : 1.57 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 288.89 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235069444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2273872656800218e-27,-2.879506000415983e-28,3.224983054715201e-17)
    sum a = (2.8198702349648636e-26,4.0586853775592395e-25,-1.1995820078432104e-16)
    sum e = 1.2368523796051335e-09
    sum de = -3.718110128374103e-14
Info: cfl dt = 0.0015650391078973836 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9990e+04 | 11520 |      1 | 3.841e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.667266953847765 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.161041781711897, dt = 0.0015650391078973836 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.7%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 1.42 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 294.71 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235069444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3341768921855152e-27,6.355369655343163e-28,3.206255093381321e-17)
    sum a = (-2.145979150975879e-25,-6.016000543578303e-26,-1.193531419777427e-16)
    sum e = 1.2368523234592663e-09
    sum de = -3.4583737397865063e-14
Info: cfl dt = 0.001565032598255599 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0281e+04 | 11520 |      1 | 3.804e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.809699910302564 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.162606820819795, dt = 0.001565032598255599 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (1.2%)
   patch tree reduce : 1.83 us    (0.3%)
   gen split merge   : 1.17 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.3%)
   LB compute        : 553.21 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.38 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235069444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.960681248591327e-28,1.5186317016040947e-28,3.187623284627785e-17)
    sum a = (5.368564162519089e-25,1.752695146608408e-25,-1.1873070833614015e-16)
    sum e = 1.2368522713670648e-09
    sum de = -3.2001482668199304e-14
Info: cfl dt = 0.0015650262937202586 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6180e+04 | 11520 |      1 | 4.400e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.804121588888023 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.1641718534180505, dt = 0.0015650262937202586 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.9%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.5%)
   LB compute        : 289.11 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235069444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2224724217539375e-27,6.454184731817403e-28,3.169090323031887e-17)
    sum a = (1.3860877456933155e-25,4.871271222570066e-26,-1.1809118016740454e-16)
    sum e = 1.2368522233045463e-09
    sum de = -2.9434711887311274e-14
Info: cfl dt = 0.0015650201836852784 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0159e+04 | 11520 |      1 | 3.820e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.749939804535453 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.165736879711771, dt = 0.0015650201836852784 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.6%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 327.75 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235069444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.121923747446817e-27,6.240952198372992e-28,3.150658858900901e-17)
    sum a = (-7.196441979943897e-26,-5.165012039373488e-26,-1.1743483597865155e-16)
    sum e = 1.2368521792471473e-09
    sum de = -2.6883792830736227e-14
Info: cfl dt = 0.0015650142554327943 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0173e+04 | 11520 |      1 | 3.818e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.756688952725929 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.167301899895456, dt = 0.0015650142554327943 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (1.9%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 309.30 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235069444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8369202637211173e-27,4.223044320899058e-28,3.132331499261687e-17)
    sum a = (1.8451167142749803e-25,1.7549557581824852e-25,-1.1676195843949011e-16)
    sum e = 1.2368521391697356e-09
    sum de = -2.434908840891858e-14
Info: cfl dt = 0.0015650084945518766 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7281e+04 | 11520 |      1 | 4.223e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.342040011584828 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.168866914150889, dt = 0.0015650084945518766 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.7%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 325.64 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235069444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3576930527186858e-27,8.735599479889307e-28,3.1141108067259113e-17)
    sum a = (1.69124950501976e-25,1.0840256592920625e-25,-1.160728303817551e-16)
    sum e = 1.2368521030466174e-09
    sum de = -2.1830954997191654e-14
Info: cfl dt = 0.0015650028853978802 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0259e+04 | 11520 |      1 | 3.807e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.798553564515277 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.170431922645441, dt = 0.0015650028853978802 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (1.8%)
   patch tree reduce : 1.95 us    (0.5%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 335.05 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235069444444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.601783627588385e-27,1.002712986538594e-27,3.095999299841032e-17)
    sum a = (-1.2586405674112074e-25,-3.534195754807973e-25,-1.1536773915107355e-16)
    sum e = 1.236852070851547e-09
    sum de = -1.9329743380598178e-14
Info: cfl dt = 0.0015649974115762293 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0126e+04 | 11520 |      1 | 3.824e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.73367779086239 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.171996925530839, dt = 0.0015649974115762293 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.7%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 311.31 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235069444444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1676907302348857e-27,8.269261662844215e-29,3.077999452016337e-17)
    sum a = (-1.7296729673877432e-25,-3.1041248044267587e-25,-1.146469706899679e-16)
    sum e = 1.2368520425577369e-09
    sum de = -1.6845798239993097e-14
Info: cfl dt = 0.0015649920564355043 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0007e+04 | 11520 |      1 | 3.839e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.67516376639713 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.173561922942415, dt = 0.0015649920564355043 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (1.8%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 338.35 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (73.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235069444444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8618840725146093e-27,-3.465462067929892e-28,3.0601136922139874e-17)
    sum a = (9.635059379501486e-26,1.0098415408274023e-25,-1.1391081593932795e-16)
    sum e = 1.236852018137868e-09
    sum de = -1.4379458244664182e-14
Info: cfl dt = 0.0015649868035555756 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7398e+04 | 11520 |      1 | 4.205e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.399254838227128 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.175126914998851, dt = 0.0015649868035555756 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (1.7%)
   patch tree reduce : 1.86 us    (0.5%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 340.96 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235069444444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.240501839215904e-27,9.994191506561194e-29,3.042344403661648e-17)
    sum a = (3.931799884974985e-28,-3.064307529401139e-25,-1.1315956396762484e-16)
    sum e = 1.2368519975640937e-09
    sum de = -1.1931055886792124e-14
Info: cfl dt = 0.0015649816372137813 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7500e+04 | 11520 |      1 | 4.189e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.44927126118146 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.176691901802406, dt = 0.0015649816372137813 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (1.8%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 319.52 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235069444444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1836398302973946e-27,-6.735894379660628e-28,3.0246939246665527e-17)
    sum a = (7.546975461752513e-26,2.1298705599127453e-25,-1.1239350935759782e-16)
    sum e = 1.2368519808080567e-09
    sum de = -9.50091792057895e-15
Info: cfl dt = 0.0015649765428178567 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9687e+04 | 11520 |      1 | 3.881e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.518542359716875 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.178256883439619, dt = 0.0015649765428178567 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.7%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 291.55 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235069444444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.330648926525736e-27,5.833556707645866e-29,3.0071645471666315e-17)
    sum a = (-3.2604953289526595e-25,-4.295924773793391e-25,-1.116129431994259e-16)
    sum e = 1.2368519678408905e-09
    sum de = -7.089365097259106e-15
Info: cfl dt = 0.001564971507291887 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7840e+04 | 11520 |      1 | 4.138e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.6150532115001 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 4.179821859982438, dt = 0.001564971507291887 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (1.8%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 312.49 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235069444444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5158579450714845e-27,-1.1123630494683417e-27,2.989758517948016e-17)
    sum a = (-4.5106967421134e-25,3.6766142839748446e-27,-1.1081816386147129e-16)
    sum e = 1.236851958633235e-09
    sum de = -4.696711482599926e-15
Info: cfl dt = 0.0015649665194048118 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0012e+04 | 11520 |      1 | 3.838e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.677414900688568 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.181386831489729, dt = 0.0015649665194048118 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.6%)
   patch tree reduce : 1.97 us    (0.5%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 348.33 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (74.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.16322624546589e-28,-7.749182312979798e-28,2.9724780366816e-17)
    sum a = (-2.2168555647754018e-26,1.0634166482547687e-25,-1.1000946596310349e-16)
    sum e = 1.2368519531552431e-09
    sum de = -2.3232656418415713e-15
Info: cfl dt = 0.0015649615700331226 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0269e+04 | 11520 |      1 | 3.806e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.803254495122056 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.182951798009134, dt = 0.0015649615700331226 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.5%)
   patch tree reduce : 1.88 us    (0.5%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 352.52 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.01519489093534e-27,-5.27533820545806e-28,2.955325257283987e-17)
    sum a = (-3.0204960449685605e-25,1.5718878270302108e-25,-1.0918714707293997e-16)
    sum e = 1.2368519513765902e-09
    sum de = 3.066976410852743e-17
Info: cfl dt = 0.0015649566523511893 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9869e+04 | 11520 |      1 | 3.857e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.607209560180097 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.184516759579168, dt = 0.0015649566523511893 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (1.7%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 318.80 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.044197794539715e-28,-2.357693052718686e-28,2.93830228694199e-17)
    sum a = (3.821217146411147e-25,2.437285996421936e-25,-1.0835150761058303e-16)
    sum e = 1.2368519532664834e-09
    sum de = 2.3647989698702094e-15
Info: cfl dt = 0.0015649517619455314 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0260e+04 | 11520 |      1 | 3.807e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.798641629008253 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.186081716231519, dt = 0.0015649517619455314 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.9%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 294.57 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (71.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4492877882888392e-27,2.1643968943524114e-28,2.921411185641095e-17)
    sum a = (-1.1426490036087795e-26,-7.278059765915952e-26,-1.0750284638500886e-16)
    sum e = 1.2368519587936718e-09
    sum de = 4.678831326353856e-15
Info: cfl dt = 0.0015649468968506055 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0057e+04 | 11520 |      1 | 3.833e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.699526425323773 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.187646667993465, dt = 0.0015649468968506055 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.7%)
   patch tree reduce : 2.19 us    (0.6%)
   gen split merge   : 1.19 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 333.73 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.130305787038664e-27,-1.6989258762237588e-28,2.904653966748229e-17)
    sum a = (6.317729779195643e-25,-1.4531710474344936e-25,-1.0664146501746105e-16)
    sum e = 1.2368519679264567e-09
    sum de = 6.972483041590526e-15
Info: cfl dt = 0.0015649420575087974 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0191e+04 | 11520 |      1 | 3.816e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.76496802226902 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.189211614890316, dt = 0.0015649420575087974 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (2.1%)
   patch tree reduce : 1.98 us    (0.7%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 273.68 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6211999233166566e-27,-4.567163490726013e-28,2.8880325961860786e-17)
    sum a = (-2.6860226134837573e-25,6.448290499185606e-26,-1.0576766462581987e-16)
    sum e = 1.2368519806326962e-09
    sum de = 9.245476303656912e-15
Info: cfl dt = 0.0015649372466558916 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8153e+04 | 11520 |      1 | 4.092e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.767983923755423 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.190776556947824, dt = 0.0015649372466558916 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (1.8%)
   patch tree reduce : 1.86 us    (0.5%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 337.45 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4908941362779924e-27,-1.9242935944983391e-28,2.871548992756201e-17)
    sum a = (1.5457590404930225e-25,3.776053455668921e-26,-1.0488174763517736e-16)
    sum e = 1.2368519968798246e-09
    sum de = 1.1497539336350593e-14
Info: cfl dt = 0.001564932469139633 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0264e+04 | 11520 |      1 | 3.807e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.800153279310775 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.19234149419448, dt = 0.001564932469139633 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.9%)
   patch tree reduce : 1.76 us    (0.6%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 293.00 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.056740468930477e-27,-1.334003532402227e-28,2.8552050277470894e-17)
    sum a = (4.503318549736658e-25,3.218805768267528e-26,-1.0398401804243718e-16)
    sum e = 1.2368520166348527e-09
    sum de = 1.3728406593313893e-14
Info: cfl dt = 0.0015649277316775957 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0110e+04 | 11520 |      1 | 3.826e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.725245855377784 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.193906426663619, dt = 0.0015649277316775957 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.1%)
   patch tree reduce : 1.74 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 281.18 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.978321076890222e-27,-9.898843625752717e-29,2.839002524709918e-17)
    sum a = (3.8087837827537216e-26,1.157946270886125e-25,-1.030747798619582e-16)
    sum e = 1.2368520398643824e-09
    sum de = 1.5937818363036374e-14
Info: cfl dt = 0.0015649230425640707 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9987e+04 | 11520 |      1 | 3.842e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.664693120239056 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.195471354395297, dt = 0.0015649230425640707 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.6%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 1.22 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.76 us    (0.5%)
   LB compute        : 332.98 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.743245210751506e-27,1.7596018003746074e-28,2.822943259501081e-17)
    sum a = (8.505100312029398e-26,3.463118243659836e-25,-1.0215433735650861e-16)
    sum e = 1.2368520665346135e-09
    sum de = 1.812552166662117e-14
Info: cfl dt = 0.0015649184113364677 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9849e+04 | 11520 |      1 | 3.859e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.597407762150523 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.197036277437861, dt = 0.0015649184113364677 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (2.0%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 267.12 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.891641185246153e-27,8.865619317355412e-28,2.807028960246449e-17)
    sum a = (3.247687508163332e-25,2.0145932384174649e-25,-1.0122299599164203e-16)
    sum e = 1.2368520966113568e-09
    sum de = 2.0291269338780872e-14
Info: cfl dt = 0.0015649138484139695 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0324e+04 | 11520 |      1 | 3.799e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.829365971861707 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.198601195849197, dt = 0.001398804150802846 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (2.2%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1.09 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 267.77 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.5164298442166046e-27,1.0470930910603575e-27,2.792942719217973e-17)
    sum a = (-4.9994881182899733e-26,-4.698327502761819e-26,-1.0038228048729359e-16)
    sum e = 1.2368521266883716e-09
    sum de = 2.2206120156154292e-14
Info: cfl dt = 0.0015649098456611004 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0327e+04 | 11520 |      1 | 3.799e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.256692223938138 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 2387                                                    [SPH][rank=0]
Info: time since start : 1087.1158768310002 (s)                                       [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[-2.38669479e-31 -1.46733713e-18 -1.60659805e-14 ...  4.59922621e-11
 -2.04464582e-13 -9.32275101e-12]
(11520, 3)
[[-2.38669479e-31 -1.46733713e-18 -1.60659805e-14  5.49693335e-12
  -2.48163866e-14]
 [ 6.81732490e-07 -5.02515301e-33 -4.05687166e-22  9.36042981e-09
   2.44950107e-09]
 [ 2.30499001e-05  1.64768446e-05 -2.89211540e-13  4.01458354e-09
  -2.00371369e-11]
 ...
 [ 3.32097719e-05  3.48826016e-05  1.12009596e-05 -2.97458731e-15
  -1.07391078e-10]
 [ 8.61138788e-06 -9.32301121e-14 -2.78610559e-22  1.01582541e-08
  -8.96040450e-13]
 [-1.17515519e-48 -8.00515534e-32  4.59922621e-11 -2.04464582e-13
  -9.32275101e-12]]
compute original rho
Info: Dumping state to _to_trash/dusty_settle/dump/0000042.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.19 us   (70.2%)
Info: dump to _to_trash/dusty_settle/dump/0000042.sham                      [Shamrock Dump][rank=0]
              - took 1.07 ms, bandwidth = 2.77 GB/s
Info: evolve_until (target_time = 4.30s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 4.2, dt = 0.0015649098456611004 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (0.9%)
   patch tree reduce : 1.00 us    (0.3%)
   gen split merge   : 500.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 283.43 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2133969430289382e-27,7.83846260137319e-28,2.7772925971230573e-17)
    sum a = (-6.213769384353411e-26,3.117147591347364e-26,-9.943038806971759e-17)
    sum e = 1.2368521627792806e-09
    sum de = 2.433186589378725e-14
Info: cfl dt = 0.0015649054327769739 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9128e+04 | 11520 |      1 | 3.955e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.244604869697216 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.201564909845661, dt = 0.0015649054327769739 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.9%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 287.83 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.095512290393004e-27,8.994772355905075e-28,2.7618071629749263e-17)
    sum a = (3.85300439627486e-25,2.0125683961486593e-25,-9.846923121158218e-17)
    sum e = 1.2368522025196366e-09
    sum de = 2.6432740219137636e-14
Info: cfl dt = 0.001564901129242338 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0261e+04 | 11520 |      1 | 3.807e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.798761439552965 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.203129815278438, dt = 0.001564901129242338 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (1.9%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 295.61 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235069444444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.051764855010377e-27,1.3730094836420582e-27,2.7464729078391935e-17)
    sum a = (-5.418533386454062e-26,6.974042181159209e-25,-9.749836309139325e-17)
    sum e = 1.2368522455280844e-09
    sum de = 2.851075572260747e-14
Info: cfl dt = 0.0015648969359019942 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7705e+04 | 11520 |      1 | 4.158e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.548476007793115 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.204694716407681, dt = 0.0015648969359019942 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.8%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 325.30 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235069444444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.629460422920471e-27,2.8497747975820672e-27,2.7312913845051237e-17)
    sum a = (-4.333613190680232e-25,5.206895763015902e-26,-9.65180935574769e-17)
    sum e = 1.2368522917704095e-09
    sum de = 3.056569400639379e-14
Info: cfl dt = 0.001564892862181099 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8914e+04 | 11520 |      1 | 3.984e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.139817203109944 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.206259613343582, dt = 0.001564892862181099 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (2.0%)
   patch tree reduce : 1.71 us    (0.6%)
   gen split merge   : 1.48 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.5%)
   LB compute        : 285.70 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235069444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6399227799117756e-27,2.4274703654921614e-27,2.716264037976161e-17)
    sum a = (-1.6934130351151961e-25,5.13283646359521e-27,-9.552872820088677e-17)
    sum e = 1.2368523412103168e-09
    sum de = 3.259734519775421e-14
Info: cfl dt = 0.0015648889162978169 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8604e+04 | 11520 |      1 | 4.027e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.988380138797167 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.207824506205763, dt = 0.0015648889162978169 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (2.1%)
   patch tree reduce : 1.80 us    (0.6%)
   gen split merge   : 1.05 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 266.93 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235069444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5795935753275034e-27,2.3949654061256354e-27,2.7013922657200115e-17)
    sum a = (-4.610704533896662e-25,-2.177537565925652e-26,-9.453057367967958e-17)
    sum e = 1.2368523938111865e-09
    sum de = 3.4605503223491185e-14
Info: cfl dt = 0.0015648851050667236 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7088e+04 | 11520 |      1 | 4.253e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.246591218201804 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.209389395122061, dt = 0.0015648851050667236 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.4%)
   patch tree reduce : 1.98 us    (0.7%)
   gen split merge   : 981.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 257.16 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235069444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6281950846421982e-27,2.33819007709877e-27,2.686677417091528e-17)
    sum a = (-1.6468416629326705e-25,2.244357360796232e-25,-9.352393629005615e-17)
    sum e = 1.2368524495360825e-09
    sum de = 3.6589970109789727e-14
Info: cfl dt = 0.001564881433720153 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0256e+04 | 11520 |      1 | 3.808e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.795837910017195 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.210954280227128, dt = 0.001564881433720153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.7%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 1.65 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 313.49 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235069444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6004575193160962e-27,2.869537812876915e-27,2.6721207935382818e-17)
    sum a = (-6.506019307020555e-25,9.698855779751521e-26,-9.25091210954766e-17)
    sum e = 1.2368525083477656e-09
    sum de = 3.855055303910087e-14
Info: cfl dt = 0.0015648779057905226 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0128e+04 | 11520 |      1 | 3.824e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.73313285947916 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.212519161660848, dt = 0.0015648779057905226 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (2.2%)
   patch tree reduce : 1.74 us    (0.6%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.5%)
   LB compute        : 258.50 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235069444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9763015294847807e-28,2.9062900869340005e-27,2.6577236488429517e-17)
    sum a = (5.976821232555184e-26,-5.954561836380987e-26,-9.148643537334009e-17)
    sum e = 1.2368525702087018e-09
    sum de = 4.048706529845747e-14
Info: cfl dt = 0.0015648745230545582 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0265e+04 | 11520 |      1 | 3.806e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.800453372799494 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.214084039566639, dt = 0.0015648745230545582 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (2.1%)
   patch tree reduce : 1.93 us    (0.7%)
   gen split merge   : 1.03 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.5%)
   LB compute        : 261.98 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235069444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.681857947069984e-28,2.7109136111682683e-27,2.6434871885667726e-17)
    sum a = (-5.178686659079257e-25,-4.53738027995711e-25,-9.045618323502733e-17)
    sum e = 1.2368526350810688e-09
    sum de = 4.239932614275387e-14
Info: cfl dt = 0.001564871285540577 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8618e+04 | 11520 |      1 | 4.025e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.995037452176486 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.2156489140896936, dt = 0.001564871285540577 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (2.1%)
   patch tree reduce : 1.70 us    (0.6%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 261.67 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235069444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.8901935369858313e-28,1.6984924767655386e-27,2.6294125709555114e-17)
    sum a = (-4.571975958310091e-25,4.1353658769032486e-25,-8.941866962071612e-17)
    sum e = 1.2368527029267689e-09
    sum de = 4.42871613674063e-14
Info: cfl dt = 0.0015648681915973574 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9591e+04 | 11520 |      1 | 3.893e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.470677397804174 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.217213785375234, dt = 0.0015648681915973574 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.7%)
   patch tree reduce : 1.55 us    (0.5%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 322.55 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235069444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0678962650549341e-27,3.02088090368746e-27,2.6155009065330782e-17)
    sum a = (2.4397962460839484e-25,-1.924792870674209e-25,-8.837420002391676e-17)
    sum e = 1.236852773707436e-09
    sum de = 4.6150401931336683e-14
Info: cfl dt = 0.0015648652380204201 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4997e+04 | 11520 |      1 | 4.609e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.224191587501277 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.218778653566831, dt = 0.0015648652380204201 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (2.0%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 291.55 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235069444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1095026130440873e-28,2.2581845371112942e-27,2.601753258049657e-17)
    sum a = (1.0909531162322565e-25,1.1594579681963975e-25,-8.732307561937845e-17)
    sum e = 1.2368528473844462e-09
    sum de = 4.79888857099433e-14
Info: cfl dt = 0.0015648624202310884 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8392e+04 | 11520 |      1 | 4.057e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.884500716589704 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.220343518804851, dt = 0.0015648624202310884 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.8%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 309.39 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235069444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.003735244840801e-29,2.6702607419871998e-27,2.5881706414980797e-17)
    sum a = (-5.196771551671874e-26,-4.1111232448082356e-26,-8.626560302691756e-17)
    sum e = 1.236852923918927e-09
    sum de = 4.980245615260714e-14
Info: cfl dt = 0.0015648597324994296 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8081e+04 | 11520 |      1 | 4.102e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.73212634677663 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.221908381225083, dt = 0.0015648597324994296 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.6%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 326.90 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235069444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.7598877499471675e-28,2.464569359115823e-27,2.574754024607189e-17)
    sum a = (-1.1929580127189974e-25,-1.8228434493181204e-25,-8.520208261834179e-17)
    sum e = 1.2368530032717674e-09
    sum de = 5.15909624876755e-14
Info: cfl dt = 0.0015648571682050113 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0208e+04 | 11520 |      1 | 3.814e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.772075541814946 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.223473240957582, dt = 0.0015648571682050113 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.8%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 314.59 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235069444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.332546933943146e-28,2.092972663637698e-27,2.561504328657265e-17)
    sum a = (-4.608624216497204e-25,-4.941280837453148e-25,-8.41328147170651e-17)
    sum e = 1.2368530854036237e-09
    sum de = 5.335426014628886e-14
Info: cfl dt = 0.0015648547201238812 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7541e+04 | 11520 |      1 | 4.183e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.468075612551464 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.225038098125787, dt = 0.0015648547201238812 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (1.9%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 308.72 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235069444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5130841885388742e-27,1.0721435797454935e-27,2.5484224280042542e-17)
    sum a = (1.7776104146625792e-25,1.9977149299165316e-25,-8.305810217588731e-17)
    sum e = 1.2368531702749312e-09
    sum de = 5.5092210700138295e-14
Info: cfl dt = 0.0015648523807326304 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0276e+04 | 11520 |      1 | 3.805e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.805609444924547 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.226602952845911, dt = 0.0015648523807326304 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (1.9%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 298.89 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235069444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.405929942069284e-28,1.9358220200870003e-27,2.5355091495623263e-17)
    sum a = (1.7565576025800677e-25,-3.1551064494961343e-25,-8.197824430849734e-17)
    sum e = 1.2368532578459156e-09
    sum de = 5.6804680617937105e-14
Info: cfl dt = 0.001564850142517884 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8344e+04 | 11520 |      1 | 4.064e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.860564537650676 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.228167805226644, dt = 0.001564850142517884 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.8%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 1.49 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (0.4%)
   LB compute        : 326.86 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235069444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.5905670614699115e-28,1.034091107313747e-27,2.5227652737373823e-17)
    sum a = (-3.121821371104812e-25,-4.594464189398229e-25,-8.08935388617279e-17)
    sum e = 1.236853348076598e-09
    sum de = 5.849154351587826e-14
Info: cfl dt = 0.0015648479982815968 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0233e+04 | 11520 |      1 | 3.810e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.784255142273784 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.229732655369162, dt = 0.0015648479982815968 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (2.1%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.5%)
   LB compute        : 267.79 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235069444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3258556225876845e-27,2.035243855802748e-28,2.5101915345763504e-17)
    sum a = (4.790846151907033e-25,-2.3079734668716477e-25,-7.980428389747022e-17)
    sum e = 1.2368534409268047e-09
    sum de = 6.015267777037954e-14
Info: cfl dt = 0.001564845941430376 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0164e+04 | 11520 |      1 | 3.819e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.750510106066045 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.231297503367443, dt = 0.001564845941430376 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.5%)
   patch tree reduce : 1.98 us    (0.5%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 344.03 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235069444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.080317399457664e-29,4.312324609292449e-29,2.497788619527258e-17)
    sum a = (2.8585710729861074e-25,-5.121047998331616e-26,-7.871077557155799e-17)
    sum e = 1.2368535363561774e-09
    sum de = 6.178796860384077e-14
Info: cfl dt = 0.001564843966239954 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0269e+04 | 11520 |      1 | 3.806e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.801763316197373 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.232862349308874, dt = 0.001564843966239954 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    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   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.64 us    (0.5%)
   LB compute        : 333.01 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235069444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.696030579703116e-28,8.819678974784055e-29,2.4855571699074408e-17)
    sum a = (-6.580688832878423e-25,-3.7379697784761825e-25,-7.761330909760755e-17)
    sum e = 1.2368536343241844e-09
    sum de = 6.33973060074752e-14
Info: cfl dt = 0.0015648420680855128 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8181e+04 | 11520 |      1 | 4.088e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.781130442601244 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.234427193275114, dt = 0.0015648420680855128 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.7%)
   patch tree reduce : 1.92 us    (0.5%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 333.06 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235069444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.432645249093178e-27,-7.392927958322673e-28,2.473497780983773e-17)
    sum a = (2.4022881233717263e-25,-3.473686256049081e-25,-7.651218006152884e-17)
    sum e = 1.2368537347901245e-09
    sum de = 6.498058683089494e-14
Info: cfl dt = 0.0015648402436301367 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7387e+04 | 11520 |      1 | 4.206e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.392386687970253 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.2359920353432, dt = 0.0015648402436301367 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.6%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 335.40 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235069444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.5573427530726053e-28,-1.2848560338400396e-27,2.461611001783915e-17)
    sum a = (4.8243253932556376e-26,2.3687742100664635e-25,-7.540767802728295e-17)
    sum e = 1.2368538377131422e-09
    sum de = 6.653771304638217e-14
Info: cfl dt = 0.0015648384909654597 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0213e+04 | 11520 |      1 | 3.813e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.774727451867355 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.23755687558683, dt = 0.0015648384909654597 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (2.0%)
   patch tree reduce : 1.76 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (0.5%)
   LB compute        : 272.27 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235069444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.035815754947868e-28,-4.750491461553219e-28,2.4498973365327708e-17)
    sum a = (-3.072497045563671e-25,4.829110123274391e-26,-7.430009582228864e-17)
    sum e = 1.2368539430522316e-09
    sum de = 6.806859231671879e-14
Info: cfl dt = 0.0015648368096998658 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7038e+04 | 11520 |      1 | 4.261e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.221754260900468 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.239121714077796, dt = 0.0015648368096998658 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (2.2%)
   patch tree reduce : 1.86 us    (0.7%)
   gen split merge   : 1.08 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 256.26 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235069444444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1656711828294444e-27,-5.291807384870433e-28,2.4383572434115103e-17)
    sum a = (1.6072532228209912e-26,2.9927030045118062e-25,-7.318972205381201e-17)
    sum e = 1.2368540507662482e-09
    sum de = 6.957313858276307e-14
Info: cfl dt = 0.0015648352009913573 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0401e+04 | 11520 |      1 | 3.789e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.866628490016721 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.240686550887496, dt = 0.0015648352009913573 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.8%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 305.05 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235243055555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.18806851427135e-28,1.2052838933107841e-28,2.4269911357570803e-17)
    sum a = (1.4704168786759976e-25,2.0534258298740078e-25,-7.20768452675598e-17)
    sum e = 1.2368541608139179e-09
    sum de = 7.105127077326253e-14
Info: cfl dt = 0.0015648336675244286 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0210e+04 | 11520 |      1 | 3.813e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.773216536989112 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.242251386088487, dt = 0.0015648336675244286 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.7%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 306.50 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235243055555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.824888718481459e-28,3.795712455093796e-28,2.4157993817805286e-17)
    sum a = (1.05105956290199e-25,3.1030707769443665e-25,-7.096175103798935e-17)
    sum e = 1.236854273153843e-09
    sum de = 7.250291453352835e-14
Info: cfl dt = 0.001564832213431751 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0100e+04 | 11520 |      1 | 3.827e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.719113134529744 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.243816219756011, dt = 0.001564832213431751 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (1.9%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 303.62 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235243055555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.264650668888211e-28,9.635336755154746e-28,2.4047823052386708e-17)
    sum a = (1.1913284307560889e-26,8.890583126148903e-26,-6.984472445724197e-17)
    sum e = 1.2368543877445176e-09
    sum de = 7.392799988028444e-14
Info: cfl dt = 0.0015648308441635493 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0196e+04 | 11520 |      1 | 3.815e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.766044611196007 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.245381051969443, dt = 0.0015648308441635493 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.2%)
   patch tree reduce : 1.80 us    (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.3%)
   LB compute        : 489.26 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235243055555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.867942714730934e-28,8.848283339026596e-28,2.3939401852863858e-17)
    sum a = (3.874618894055225e-25,-1.2829872153761936e-25,-6.872604755720805e-17)
    sum e = 1.2368545045443304e-09
    sum de = 7.532646339332711e-14
Info: cfl dt = 0.0015648295663091211 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6855e+04 | 11520 |      1 | 4.290e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.132259118987792 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.246945882813606, dt = 0.0015648295663091211 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (2.1%)
   patch tree reduce : 1.91 us    (0.7%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.5%)
   LB compute        : 260.59 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (75.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235243055555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.035815754947868e-28,5.320411749112975e-28,2.3832732571683924e-17)
    sum a = (9.600734142410434e-26,-4.22982615562129e-25,-6.76060018604844e-17)
    sum e = 1.236854623511575e-09
    sum de = 7.669824651578108e-14
Info: cfl dt = 0.0015648283873766673 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0342e+04 | 11520 |      1 | 3.797e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.83744628659218 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.2485107123799155, dt = 0.0015648283873766673 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (1.8%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 314.24 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.66 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (62.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235243055555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.4741300570942986e-28,-3.6240862696385387e-28,2.372781712111488e-17)
    sum a = (2.7505332560409395e-25,1.497509545608268e-25,-6.648486592876453e-17)
    sum e = 1.2368547446044597e-09
    sum de = 7.804329694544822e-14
Info: cfl dt = 0.0015648273155387375 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7427e+04 | 11520 |      1 | 4.200e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.411847850511755 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.250075540767292, dt = 0.0015648273155387375 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.0%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 315.38 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235243055555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.07711825296694e-28,3.1386788764317505e-28,2.3624656979528047e-17)
    sum a = (2.2511808018664534e-25,1.2337946432703514e-25,-6.536291724532069e-17)
    sum e = 1.2368548677811175e-09
    sum de = 7.936156726948293e-14
Info: cfl dt = 0.001564826359351731 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8361e+04 | 11520 |      1 | 4.062e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.868903165373174 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.251640368082831, dt = 0.001564826359351731 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (2.0%)
   patch tree reduce : 1.77 us    (0.6%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.5%)
   LB compute        : 299.71 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 us    (64.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235243055555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2162922395495808e-27,4.854073932067883e-28,2.3523253191681698e-17)
    sum a = (-1.7485553149834872e-25,-6.076191060335945e-26,-6.424043087015908e-17)
    sum e = 1.236854992999611e-09
    sum de = 8.065301579177167e-14
Info: cfl dt = 0.0015648255274588344 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7405e+04 | 11520 |      1 | 4.204e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.401429188756476 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.253205194442183, dt = 0.0015648255274588344 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (2.1%)
   patch tree reduce : 1.70 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 267.59 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235243055555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.435115155655707e-28,2.593462357990554e-28,2.3423606373696513e-17)
    sum a = (5.911929198474768e-25,2.366402648231082e-25,-6.311767764302502e-17)
    sum e = 1.2368551202179433e-09
    sum de = 8.191760656854654e-14
Info: cfl dt = 0.0015648248282867175 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0148e+04 | 11520 |      1 | 3.821e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.742382936842635 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.254770019969642, dt = 0.0015648248282867175 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.9%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 282.68 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235243055555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1434203605745464e-27,8.525834142110658e-28,2.3325716721038417e-17)
    sum a = (-1.5208229692648567e-25,1.6419251794786188e-25,-6.199493086799816e-17)
    sum e = 1.2368552493940693e-09
    sum de = 8.315530886860931e-14
Info: cfl dt = 0.0015648242697450475 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6970e+04 | 11520 |      1 | 4.271e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.18873986457118 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.256334844797928, dt = 0.0015648242697450475 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.9%)
   patch tree reduce : 1.74 us    (0.6%)
   gen split merge   : 991.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 261.41 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235243055555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3411112835170406e-27,1.0594883155654594e-27,2.3229583999624545e-17)
    sum a = (1.8498459691630808e-25,-4.2989481684139365e-25,-6.087245674155817e-17)
    sum e = 1.2368553804858968e-09
    sum de = 8.436609650701307e-14
Info: cfl dt = 0.0015648238589387427 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0161e+04 | 11520 |      1 | 3.819e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.749185256435307 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.257899669067673, dt = 0.0015648238589387427 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (2.3%)
   patch tree reduce : 2.09 us    (0.8%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.5%)
   LB compute        : 255.56 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235243055555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.897942907438542e-27,-7.367790789745893e-29,2.3135207564403953e-17)
    sum a = (1.7296868361704061e-25,-3.633745876763354e-25,-5.97505240864939e-17)
    sum e = 1.2368555134513012e-09
    sum de = 8.554995001772733e-14
Info: cfl dt = 0.0015648236019036258 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0312e+04 | 11520 |      1 | 3.800e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.822779336471804 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.259464492926612, dt = 0.0015648236019036258 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (2.1%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 273.56 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.235243055555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1739316824332588e-27,-6.0944631814945145e-28,2.304258634753654e-17)
    sum a = (-6.879457083397201e-25,-3.27081370325397e-25,-5.86293950261262e-17)
    sum e = 1.2368556482481318e-09
    sum de = 8.670685470298733e-14
Info: cfl dt = 0.0015648235033731764 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0390e+04 | 11520 |      1 | 3.791e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.86093983583625 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.261029316528515, dt = 0.0015648235033731764 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (1.8%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.67 us    (0.5%)
   LB compute        : 315.59 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234982638888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.0011437982902405e-28,-1.0886344291307777e-27,2.2951718876816358e-17)
    sum a = (-2.1803390600235884e-25,4.375836699497892e-25,-5.750933141198936e-17)
    sum e = 1.2368557848342208e-09
    sum de = 8.783680063133497e-14
Info: cfl dt = 0.0015648235665838485 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0223e+04 | 11520 |      1 | 3.812e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.779254757952028 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.262594140031888, dt = 0.0015648235665838485 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (2.0%)
   patch tree reduce : 2.30 us    (0.8%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 276.01 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234982638888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.146766016252277e-28,2.0196414753068155e-28,2.2862603270618506e-17)
    sum a = (6.165575364599309e-26,2.5751000897446745e-25,-5.639059257469742e-17)
    sum e = 1.2368559231673883e-09
    sum de = 8.893978310404047e-14
Info: cfl dt = 0.0015648237931264054 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0342e+04 | 11520 |      1 | 3.797e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.837384630546644 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.264158963598472, dt = 0.0015648237931264054 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (2.1%)
   patch tree reduce : 1.87 us    (0.7%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 262.81 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (62.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234982638888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.336586028754028e-28,4.599235050634318e-28,2.277523724415188e-17)
    sum a = (-2.618023972086818e-25,7.159481674146866e-26,-5.5273434112582154e-17)
    sum e = 1.2368560632054515e-09
    sum de = 9.001580354160024e-14
Info: cfl dt = 0.0015648241828466747 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6706e+04 | 11520 |      1 | 4.314e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.059510177880657 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.2657237873915985, dt = 0.0015648241828466747 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.9%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 1.09 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 284.30 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234982638888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.153396557613721e-29,4.282853446133466e-28,2.2689618115804837e-17)
    sum a = (3.2268982029514186e-25,-9.110750050924839e-26,-5.415811196564533e-17)
    sum e = 1.2368562049062384e-09
    sum de = 9.106486766750762e-14
Info: cfl dt = 0.0015648247338005436 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9067e+04 | 11520 |      1 | 3.963e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.214128030771398 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.267288611574445, dt = 0.0015648247338005436 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (2.1%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 1.03 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.5%)
   LB compute        : 264.74 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234982638888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0394652605956794e-27,1.7123612594285896e-28,2.2605742804247302e-17)
    sum a = (-2.988188715754983e-25,4.409440759890464e-26,-5.304487525549032e-17)
    sum e = 1.2368563482275855e-09
    sum de = 9.208698618591923e-14
Info: cfl dt = 0.0015648254422637774 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0284e+04 | 11520 |      1 | 3.804e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.809227781862196 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.2688534363082455, dt = 0.0015648254422637774 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (2.1%)
   patch tree reduce : 2.33 us    (0.8%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.5%)
   LB compute        : 263.82 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234982638888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0748306563864597e-28,3.3549452060837034e-28,2.252360784404633e-17)
    sum a = (2.558083093417111e-25,-1.4443158297041354e-25,-5.193397407500683e-17)
    sum e = 1.2368564931273514e-09
    sum de = 9.308217578449041e-14
Info: cfl dt = 0.0015648263027976813 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0288e+04 | 11520 |      1 | 3.803e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.81118227171154 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.2704182617505095, dt = 0.0015648263027976813 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (2.1%)
   patch tree reduce : 1.88 us    (0.7%)
   gen split merge   : 1.47 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.5%)
   LB compute        : 266.32 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234982638888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.090987035629992e-28,-2.307852115023346e-29,2.2443209378632556e-17)
    sum a = (-4.9502539398361416e-26,-2.0615390677318928e-25,-5.082565466331321e-17)
    sum e = 1.2368566395634266e-09
    sum de = 9.405045699191973e-14
Info: cfl dt = 0.0015648273083678276 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7422e+04 | 11520 |      1 | 4.201e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.409564186400512 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.271983088053307, dt = 0.0015648273083678276 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (2.0%)
   patch tree reduce : 1.93 us    (0.7%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.5%)
   LB compute        : 272.59 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234982638888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.984379719106547e-28,-4.093457882891174e-28,2.2364543169951476e-17)
    sum a = (2.1545153867049872e-27,1.008822185301668e-25,-4.972015876935965e-17)
    sum e = 1.2368567874937352e-09
    sum de = 9.499185621848034e-14
Info: cfl dt = 0.0015648284505126405 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0294e+04 | 11520 |      1 | 3.803e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.813838645509824 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.273547915361675, dt = 0.0015648284505126405 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.8%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 308.48 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234982638888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.448983938318758e-28,1.4562221796203648e-29,2.2287604605939413e-17)
    sum a = (-1.6125233602329506e-26,-1.3271315505926853e-25,-4.861772815879574e-17)
    sum e = 1.2368569368762478e-09
    sum de = 9.590640379089063e-14
Info: cfl dt = 0.0015648297195572116 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0135e+04 | 11520 |      1 | 3.823e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.736218708762642 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.275112743812188, dt = 0.0015648297195572116 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.9%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.5%)
   LB compute        : 279.00 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2347222222222225
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.21321463304689e-28,-3.966905241090833e-28,2.2212388697479323e-17)
    sum a = (3.6994214970642324e-25,3.06926561920318e-25,-4.751860103966065e-17)
    sum e = 1.2368570876689832e-09
    sum de = 9.679413593160684e-14
Info: cfl dt = 0.001564831104865544 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8049e+04 | 11520 |      1 | 4.107e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.71644252960555 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.276677573531745, dt = 0.001564831104865544 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.3%)
   patch tree reduce : 1.61 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 271.03 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2347222222222225
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5200185798703999e-27,4.315141705770881e-28,2.2138890085914216e-17)
    sum a = (3.5813357470796837e-26,-3.2429097125359107e-25,-4.642301093665681e-17)
    sum e = 1.2368572398300217e-09
    sum de = 9.765509314132284e-14
Info: cfl dt = 0.0015648325951239774 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9567e+04 | 11520 |      1 | 3.896e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.458450940847312 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.278242404636611, dt = 0.0015648325951239774 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (2.0%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 294.49 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2347222222222225
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2807820789327684e-27,-5.560081649508827e-28,2.206710305194673e-17)
    sum a = (5.467836908821209e-25,2.4965126327844957e-25,-4.5331190058088164e-17)
    sum e = 1.23685739331751e-09
    sum de = 9.848932068619192e-14
Info: cfl dt = 0.0015648341786468495 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8148e+04 | 11520 |      1 | 4.093e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.764539754762323 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.279807237231735, dt = 0.0015648341786468495 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.9%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 280.96 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2347222222222225
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.551856010001401e-27,3.063159020836855e-28,2.1997021514826442e-17)
    sum a = (4.743539734243366e-25,-2.463671355438391e-25,-4.424336798475743e-17)
    sum e = 1.2368575480896686e-09
    sum de = 9.92968690813178e-14
Info: cfl dt = 0.0015648358436962332 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0219e+04 | 11520 |      1 | 3.812e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.777541610273422 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.281372071410382, dt = 0.0015648358436962332 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (1.8%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 317.93 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.58 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2347222222222225
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.246682021420261e-27,-4.929593787662778e-28,2.1928639037294783e-17)
    sum a = (-6.724209930267007e-26,2.498717769227921e-25,-4.315976952730024e-17)
    sum e = 1.236857704104797e-09
    sum de = 1.000777926810647e-13
Info: cfl dt = 0.0015648375788050953 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0072e+04 | 11520 |      1 | 3.831e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.705680026009489 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.282936907254078, dt = 0.0015648375788050953 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.7%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 334.37 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (57.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2347222222222225
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7057994975612682e-27,2.465934567409217e-28,2.1861948834965166e-17)
    sum a = (-4.289531264985725e-25,3.0059684951290144e-25,-4.208061880984193e-17)
    sum e = 1.236857861321287e-09
    sum de = 1.0083215152579843e-13
Info: cfl dt = 0.0015648393730949852 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0226e+04 | 11520 |      1 | 3.811e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.780718696074802 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.284501744832883, dt = 0.0015648393730949852 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (1.9%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 310.55 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2347222222222225
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.750240372077048e-27,7.863383070220859e-28,2.1796943773614446e-17)
    sum a = (4.027529157306695e-25,-1.0844347883806225e-25,-4.1006135148198805e-17)
    sum e = 1.236858019697622e-09
    sum de = 1.0156000903759103e-13
Info: cfl dt = 0.0015648412165790446 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9547e+04 | 11520 |      1 | 3.899e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.44895617798331 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.286066584205978, dt = 0.0015648412165790446 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (1.9%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 330.59 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2347222222222225
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0441977945397147e-27,2.7934762079592443e-28,2.173361638036182e-17)
    sum a = (-3.014879187990025e-25,1.7095008230043353e-25,-3.993653449075798e-17)
    sum e = 1.2368581791923904e-09
    sum de = 1.0226143364328603e-13
Info: cfl dt = 0.0015648431004406424 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9800e+04 | 11520 |      1 | 3.866e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.572823816729569 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.287631425422557, dt = 0.0015648431004406424 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.8%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 296.30 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2347222222222225
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0026522165445777e-27,7.800973548237129e-28,2.1671958847466123e-17)
    sum a = (1.3595845020242248e-25,2.3792104690204095e-25,-3.8872031366732076e-17)
    sum e = 1.2368583397642873e-09
    sum de = 1.0293649901533748e-13
Info: cfl dt = 0.0015648450172803985 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9951e+04 | 11520 |      1 | 3.846e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.646603755093167 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.289196268522997, dt = 0.0015648450172803985 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.0%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.5%)
   LB compute        : 301.57 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2347222222222225
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5435347404035705e-27,1.2092603333399558e-27,2.1611963033044218e-17)
    sum a = (1.6591016668068076e-25,-5.451055681798916e-26,-3.781283433953468e-17)
    sum e = 1.2368585013721309e-09
    sum de = 1.03585282587069e-13
Info: cfl dt = 0.001564846961324366 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8750e+04 | 11520 |      1 | 4.007e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.059096073928867 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.2907611135402774, dt = 0.001564846961324366 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (2.0%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.36 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 308.32 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2347222222222225
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.830618541528728e-27,8.990330011458316e-28,2.155362047379769e-17)
    sum a = (-4.7733784201429195e-25,-2.2891673975805504e-25,-3.675915209306584e-17)
    sum e = 1.2368586639748585e-09
    sum de = 1.0420786616732356e-13
Info: cfl dt = 0.0015648489285873769 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0187e+04 | 11520 |      1 | 3.816e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.761996355043747 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.292325960501602, dt = 0.0015648489285873769 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (1.9%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 329.81 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (60.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2347222222222225
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5962968845171808e-27,4.068429064178949e-28,2.1496922379726073e-17)
    sum a = (-1.882992359727773e-25,-3.324527498507967e-25,-3.571118710486767e-17)
    sum e = 1.2368588275315398e-09
    sum de = 1.0480433628015402e-13
Info: cfl dt = 0.001564850916986942 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0132e+04 | 11520 |      1 | 3.823e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.73493101242938 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.293890809430189, dt = 0.001564850916986942 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (2.1%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 270.81 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2347222222222225
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5179382624709422e-27,-1.942821421337259e-28,2.1441859649266683e-17)
    sum a = (8.014020586713422e-25,4.851750910971821e-25,-3.466913988011188e-17)
    sum e = 1.2368589920013846e-09
    sum de = 1.053747832632128e-13
Info: cfl dt = 0.0015648529264051122 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0244e+04 | 11520 |      1 | 3.809e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.789950140315602 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.295455660347176, dt = 0.0015648529264051122 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.0%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.69 us    (0.5%)
   LB compute        : 295.79 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2347222222222225
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.531685505145961e-27,1.1999314100017628e-27,2.138842286859635e-17)
    sum a = (5.643686138597365e-25,3.432294874191205e-25,-3.363320783897251e-17)
    sum e = 1.2368591573437454e-09
    sum de = 1.059193021624214e-13
Info: cfl dt = 0.0015648549586966788 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0211e+04 | 11520 |      1 | 3.813e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.77356778954211 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.297020513273581, dt = 0.0015648549586966788 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (0.8%)
   patch tree reduce : 2.12 us    (0.3%)
   gen split merge   : 1.21 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (0.2%)
   LB compute        : 673.64 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 6.94 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (78.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234548611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.245927812293092e-27,1.6138820675344713e-27,2.1336602317085306e-17)
    sum a = (-3.0712557895153276e-25,2.0499655685995767e-25,-3.260358383692388e-17)
    sum e = 1.2368593235181266e-09
    sum de = 1.064379921178185e-13
Info: cfl dt = 0.0015648570176440989 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7824e+04 | 11520 |      1 | 4.140e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.606212756443142 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.298585368232278, dt = 0.0014146317677230513 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.6%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 341.53 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234548611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1329580035832417e-27,1.8021616271718453e-27,2.1291285857757074e-17)
    sum a = (3.2811944870772633e-25,-5.384922391670158e-25,-3.1679131046839006e-17)
    sum e = 1.2368594744936338e-09
    sum de = 1.0688239516371936e-13
Info: cfl dt = 0.0015648589092407677 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0226e+04 | 11520 |      1 | 3.811e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.36196004440554 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 2451                                                    [SPH][rank=0]
Info: time since start : 1115.63669677 (s)                                            [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[-3.21551929e-32 -6.60446236e-19 -1.16917326e-14 ...  8.06426123e-11
 -1.33845009e-13 -7.87562270e-12]
(11520, 3)
[[-3.21551929e-32 -6.60446236e-19 -1.16917326e-14  9.79488166e-12
  -2.35973362e-14]
 [ 4.51589466e-07 -6.17797169e-35 -7.02044660e-23  6.88098051e-09
   1.51866461e-09]
 [ 2.27383704e-05  1.55294556e-05 -2.23953937e-14  6.32908205e-09
   1.58677762e-10]
 ...
 [ 3.30188999e-05  3.40773879e-05  9.08063730e-06 -8.37884868e-16
  -6.48488737e-11]
 [ 8.30833812e-06 -2.93325227e-16 -2.79157873e-23  1.08821547e-08
   8.86911116e-11]
 [-1.47129341e-51 -5.53542679e-33  8.06426123e-11 -1.33845009e-13
  -7.87562270e-12]]
compute original rho
Info: Dumping state to _to_trash/dusty_settle/dump/0000043.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.48 us   (70.3%)
Info: dump to _to_trash/dusty_settle/dump/0000043.sham                      [Shamrock Dump][rank=0]
              - took 1.20 ms, bandwidth = 2.46 GB/s
Info: evolve_until (target_time = 4.40s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 4.300000000000001, dt = 0.0015648589092407677 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.16 us    (1.0%)
   patch tree reduce : 1.26 us    (0.4%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 309.03 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234548611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.087130250801157e-27,4.179487675347913e-28,2.1242366367486386e-17)
    sum a = (-3.2943628962158306e-25,-2.598115334574008e-25,-3.0661300127544494e-17)
    sum e = 1.2368596420647128e-09
    sum de = 1.0735454890331275e-13
Info: cfl dt = 0.001564861033049701 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7068e+04 | 11520 |      1 | 4.256e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.23697918929126 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.3015648589092415, dt = 0.001564861033049701 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (2.0%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.04 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 270.31 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234809027777779
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0559862598033083e-27,2.3688530887678596e-28,2.1195182074598387e-17)
    sum a = (1.6651207184825719e-25,6.349475422711366e-26,-2.965106442651979e-17)
    sum e = 1.2368598104290797e-09
    sum de = 1.077988284413556e-13
Info: cfl dt = 0.001564863207200291 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0319e+04 | 11520 |      1 | 3.800e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.826579110509703 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.303129719942291, dt = 0.001564863207200291 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.9%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 1.07 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 279.16 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234635416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.6974174579694216e-27,6.094029782036294e-28,2.114957265408766e-17)
    sum a = (8.990715736976132e-26,-1.4481436137191374e-25,-2.8647858680416223e-17)
    sum e = 1.2368599794671074e-09
    sum de = 1.082177069118095e-13
Info: cfl dt = 0.0015648654387667995 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0423e+04 | 11520 |      1 | 3.787e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.877453327776294 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.304694583149491, dt = 0.0015648654387667995 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.6%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 307.01 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234635416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.791725180078169e-27,2.1311334859339996e-28,2.1105527549965356e-17)
    sum a = (-6.996731509595961e-26,-2.1139769349808887e-25,-2.7651859562274807e-17)
    sum e = 1.2368601491409918e-09
    sum de = 1.0861130125628078e-13
Info: cfl dt = 0.0015648677387555905 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0170e+04 | 11520 |      1 | 3.818e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.753656093865178 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.306259448588258, dt = 0.0015648677387555905 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.5%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 941.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 351.87 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234635416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.541393653010096e-27,-1.8661097172322575e-28,2.1063035349330766e-17)
    sum a = (2.133781556623726e-26,-4.522859664508896e-25,-2.66632421192007e-17)
    sum e = 1.2368603194112641e-09
    sum de = 1.0897973384535411e-13
Info: cfl dt = 0.001564870118931685 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9340e+04 | 11520 |      1 | 3.926e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.348057537507438 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.307824316327014, dt = 0.001564870118931685 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (2.0%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 293.11 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (64.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234635416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.657891427379726e-27,-1.0849722037088158e-27,2.1022084366258162e-17)
    sum a = (1.7879218545725578e-25,-1.5478116203271541e-25,-2.5682175592972942e-17)
    sum e = 1.2368604902386583e-09
    sum de = 1.0932313149937957e-13
Info: cfl dt = 0.001564872591533046 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0362e+04 | 11520 |      1 | 3.794e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.847548858147483 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.309389186445945, dt = 0.001564872591533046 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (2.1%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 291.64 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234635416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.033041998415258e-27,-1.0844954643047735e-27,2.0982662654416705e-17)
    sum a = (-2.1407159479552513e-25,-3.0918648005526216e-25,-2.4708826550857677e-17)
    sum e = 1.2368606615841063e-09
    sum de = 1.0964162478846893e-13
Info: cfl dt = 0.0015648751689717464 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0279e+04 | 11520 |      1 | 3.805e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.806968627729063 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.310954059037479, dt = 0.0015648751689717464 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.2%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.66 us    (0.6%)
   LB compute        : 266.09 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234635416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.4255893177736196e-27,-1.698524981724905e-27,2.094475800890527e-17)
    sum a = (-1.4618945117295526e-25,5.635649179044127e-26,-2.3743356180399438e-17)
    sum e = 1.2368608334087548e-09
    sum de = 1.0993534784343565e-13
Info: cfl dt = 0.0015648778635372104 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0437e+04 | 11520 |      1 | 3.785e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.884561908325912 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.312518934206451, dt = 0.0015648778635372104 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (2.0%)
   patch tree reduce : 1.99 us    (0.7%)
   gen split merge   : 1.07 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.5%)
   LB compute        : 265.42 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234635416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.240441069221888e-27,-1.3185745116895826e-27,2.090835797671091e-17)
    sum a = (2.3595653383781977e-26,-6.087480249423668e-25,-2.27859233969355e-17)
    sum e = 1.2368610056739572e-09
    sum de = 1.1020443880302127e-13
Info: cfl dt = 0.0015648806871101338 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0307e+04 | 11520 |      1 | 3.801e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.820929554946119 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.314083812069988, dt = 0.0015648806871101338 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.8%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 1.45 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 319.78 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234635416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.408946778577959e-27,-2.805611392789414e-27,2.0873449857920985e-17)
    sum a = (-5.8625771353683e-25,-5.010895192030333e-25,-2.1836685015341332e-17)
    sum e = 1.2368611783412927e-09
    sum de = 1.1044903856726297e-13
Info: cfl dt = 0.0015648836508945995 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9983e+04 | 11520 |      1 | 3.842e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.662666201029007 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.315648692757098, dt = 0.0015648836508945995 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (1.8%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 321.74 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234635416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0012653382782726e-27,-3.498877166158681e-27,2.0840020708957344e-17)
    sum a = (-3.5753583017519087e-25,2.644742181887186e-25,-2.0895790870859716e-17)
    sum e = 1.2368613513725636e-09
    sum de = 1.1066929271881283e-13
Info: cfl dt = 0.0015648867651760414 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8649e+04 | 11520 |      1 | 4.021e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.010089494671615 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.317213576407993, dt = 0.0015648867651760414 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.6%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 1.20 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 333.95 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234635416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6358229151068764e-27,-2.496640919024129e-27,2.0808057357360477e-17)
    sum a = (-3.714989205603507e-25,1.7004653110993576e-25,-1.9963389074908583e-17)
    sum e = 1.2368615247298015e-09
    sum de = 1.1086534915345027e-13
Info: cfl dt = 0.001564890039111277 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8528e+04 | 11520 |      1 | 4.038e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.950899178680926 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.318778463173169, dt = 0.001564890039111277 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.6%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 332.90 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0221292822668655e-27,-2.3069853161069053e-27,2.077754640022856e-17)
    sum a = (-1.6394912081212535e-25,6.216612484799337e-26,-1.9039624775851895e-17)
    sum e = 1.2368616983752762e-09
    sum de = 1.1103736031193231e-13
Info: cfl dt = 0.0015648934805557455 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6799e+04 | 11520 |      1 | 4.299e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.105604105595917 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.32034335321228, dt = 0.0015648934805557455 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.9%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 288.26 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.437706602206268e-28,-2.281934827421769e-27,2.0748474210285746e-17)
    sum a = (-6.15080511106316e-26,3.2815897473831606e-25,-1.8124637537136776e-17)
    sum e = 1.2368618722714974e-09
    sum de = 1.1118548136402509e-13
Info: cfl dt = 0.0015648970959320353 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0238e+04 | 11520 |      1 | 3.810e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.787079527947922 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.321908246692836, dt = 0.0015648970959320353 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.7%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 317.64 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234548611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.312887558238808e-28,-1.539023146113362e-27,2.0720826946452965e-17)
    sum a = (-2.2855060389575047e-26,-3.6857954180977844e-25,-1.721856572309427e-17)
    sum e = 1.2368620463812222e-09
    sum de = 1.1130987101836463e-13
Info: cfl dt = 0.0015649008901423658 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0279e+04 | 11520 |      1 | 3.805e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.807324019395923 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.3234731437887675, dt = 0.0015649008901423658 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.0%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (0.5%)
   LB compute        : 306.22 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234548611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.966167991662532e-28,-2.666706866429793e-27,2.0694590552178798e-17)
    sum a = (3.404092704645891e-25,1.020499700303957e-25,-1.6321540512829454e-17)
    sum e = 1.2368622206674576e-09
    sum de = 1.1141069145287596e-13
Info: cfl dt = 0.001564904866526131 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0285e+04 | 11520 |      1 | 3.804e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.8103208377148 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 4.32503804467891, dt = 0.001564904866526131 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (1.9%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.5%)
   LB compute        : 311.13 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234548611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.725276563283556e-27,-2.1308084363403343e-27,2.066975077181158e-17)
    sum a = (2.436190362591555e-26,-6.636143160356633e-26,-1.543369349646197e-17)
    sum e = 1.236862395093469e-09
    sum de = 1.1148810730410514e-13
Info: cfl dt = 0.0015649090268624849 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0312e+04 | 11520 |      1 | 3.801e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.823339218485023 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.3266029495454355, dt = 0.0015649090268624849 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.7%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 323.43 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234548611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.49020069714484e-27,-2.3863407569070505e-27,2.064629314355892e-17)
    sum a = (-3.7279634517847913e-25,3.4146815202091304e-25,-1.4555149357573484e-17)
    sum e = 1.2368625696227793e-09
    sum de = 1.1154228724925222e-13
Info: cfl dt = 0.001564913371416301 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0293e+04 | 11520 |      1 | 3.803e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.814357478139131 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.328167858572298, dt = 0.001564913371416301 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.01 us    (2.4%)
   patch tree reduce : 2.34 us    (0.8%)
   gen split merge   : 1.04 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 274.24 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234548611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.268689763699094e-28,-1.5251326934773998e-27,2.0624203016595527e-17)
    sum a = (-1.1173523440313743e-25,-5.937433889792119e-26,-1.368603079468393e-17)
    sum e = 1.2368627442191813e-09
    sum de = 1.1157340257975186e-13
Info: cfl dt = 0.001564917899024759 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0424e+04 | 11520 |      1 | 3.787e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.87832155715373 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.329732771943714, dt = 0.001564917899024759 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (2.2%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 267.59 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234548611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.650081286932999e-28,-1.933871722525009e-27,2.0603465549631964e-17)
    sum a = (-1.2902128511436431e-25,7.774215465686605e-26,-1.2826456328469699e-17)
    sum e = 1.236862918846733e-09
    sum de = 1.1158162742592249e-13
Info: cfl dt = 0.0015649226072202873 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0289e+04 | 11520 |      1 | 3.803e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.812316672817841 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.331297689842739, dt = 0.0015649226072202873 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.9%)
   patch tree reduce : 1.72 us    (0.6%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 275.99 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 us    (62.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234548611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.493485582828554e-28,-1.6976256778490977e-27,2.058406571986624e-17)
    sum a = (1.5659103817024358e-25,-1.4286718428602137e-25,-1.1976540444741097e-17)
    sum e = 1.2368630934697711e-09
    sum de = 1.1156713982831882e-13
Info: cfl dt = 0.0015649274923851576 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0397e+04 | 11520 |      1 | 3.790e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.865385995783072 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.332862612449959, dt = 0.0015649274923851576 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (2.1%)
   patch tree reduce : 1.96 us    (0.7%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.5%)
   LB compute        : 273.59 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234809027777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.305953166907283e-28,-2.0882052695972743e-27,2.056598832876988e-17)
    sum a = (-3.0573870068522763e-25,2.409284924225236e-25,-1.1136393463429497e-17)
    sum e = 1.236863268052911e-09
    sum de = 1.1153011933931504e-13
Info: cfl dt = 0.0015649325499313843 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0370e+04 | 11520 |      1 | 3.793e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.852061597349454 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.334427539942344, dt = 0.0015649325499313843 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.1%)
   patch tree reduce : 1.74 us    (0.6%)
   gen split merge   : 1.08 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 279.46 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (71.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234809027777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.905206117939123e-29,-1.4244539993328133e-27,2.054921800866171e-17)
    sum a = (6.166199459819147e-26,-3.7682800029862807e-25,-1.0306124076214155e-17)
    sum e = 1.2368634425610488e-09
    sum de = 1.114707502208083e-13
Info: cfl dt = 0.0015649377744996673 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9997e+04 | 11520 |      1 | 3.840e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.669743056403771 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.335992472492276, dt = 0.0015649377744996673 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.9%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.5%)
   LB compute        : 273.60 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234809027777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.68764854011127e-28,-2.5007148739314e-27,2.0533739223643328e-17)
    sum a = (-2.1338509005370413e-25,-2.6794002697621506e-25,-9.485834633424621e-18)
    sum e = 1.2368636169593736e-09
    sum de = 1.1138921700142919e-13
Info: cfl dt = 0.001564943160170078 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0369e+04 | 11520 |      1 | 3.793e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.851843799227824 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.3375574102667755, dt = 0.001564943160170078 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.9%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 295.90 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234548611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.032920458427225e-29,-2.8401099896637535e-27,2.0519536282571255e-17)
    sum a = (3.3213584816694596e-25,2.3240889923261128e-25,-8.675625700645581e-18)
    sum e = 1.2368637912133608e-09
    sum de = 1.1128571012971545e-13
Info: cfl dt = 0.001564948700677476 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0037e+04 | 11520 |      1 | 3.835e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.689506504719954 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.339122353426945, dt = 0.001564948700677476 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (2.1%)
   patch tree reduce : 1.92 us    (0.7%)
   gen split merge   : 1.04 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.5%)
   LB compute        : 261.38 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234548611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.841348947695071e-28,-2.0778036825999858e-27,2.0506593338870406e-17)
    sum a = (-2.818968764091765e-26,-7.105116046107705e-26,-7.875594217821108e-18)
    sum e = 1.2368639652887888e-09
    sum de = 1.1116041975599361e-13
Info: cfl dt = 0.0015649543896244145 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7185e+04 | 11520 |      1 | 4.238e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.294495401373002 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.340687302127622, dt = 0.0015649543896244145 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.2%)
   patch tree reduce : 1.99 us    (0.7%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.5%)
   LB compute        : 267.22 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234548611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.415759629921452e-28,-2.4397355701597973e-27,2.0494894397235482e-17)
    sum a = (3.35318040348983e-25,6.237346314880598e-25,-7.085832659426541e-18)
    sum e = 1.2368641391517307e-09
    sum de = 1.1101354086134016e-13
Info: cfl dt = 0.001564960220684725 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0299e+04 | 11520 |      1 | 3.802e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.817645937900904 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.342252256517247, dt = 0.001564960220684725 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.77 us    (2.3%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1.43 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 275.98 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234548611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3369506487181254e-27,-9.21493928068101e-28,2.0484423321373907e-17)
    sum a = (-2.8607762094295326e-25,1.501510689406558e-25,-6.306428703366035e-18)
    sum e = 1.236864312768568e-09
    sum de = 1.1084526984644768e-13
Info: cfl dt = 0.0015649661877912445 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0338e+04 | 11520 |      1 | 3.797e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.836653378215033 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.343817216737931, dt = 0.0015649661877912445 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (2.1%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.5%)
   LB compute        : 271.81 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (63.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234548611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.368666538861094e-28,-1.0392052209207472e-27,2.0475163841807734e-17)
    sum a = (-5.583918619710947e-26,-1.0406441071220387e-26,-5.537469932861389e-18)
    sum e = 1.2368644861059903e-09
    sum de = 1.1065580637108425e-13
Info: cfl dt = 0.0015649722853020834 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7323e+04 | 11520 |      1 | 4.216e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.362405683186843 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.345382182925722, dt = 0.0015649722853020834 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (2.4%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 991.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.5%)
   LB compute        : 254.81 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234548611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.381087673263824e-28,-1.2007765389452923e-27,2.0467099552051376e-17)
    sum a = (3.605398085000077e-26,-3.6254384759481863e-26,-4.779035677391563e-18)
    sum e = 1.2368646591310003e-09
    sum de = 1.104453519752536e-13
Info: cfl dt = 0.0015649785081406692 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0312e+04 | 11520 |      1 | 3.800e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.82420429980187 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.346947155211025, dt = 0.0015649785081406692 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.8%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1.57 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 301.69 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234548611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.539131025628591e-28,-1.2795685604497514e-27,2.0460213928204057e-17)
    sum a = (-8.078981964707153e-26,-6.763507125942762e-25,-4.031206043551084e-18)
    sum e = 1.2368648318109163e-09
    sum de = 1.1021411081662782e-13
Info: cfl dt = 0.0015649848519055133 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8605e+04 | 11520 |      1 | 4.027e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.989529900610819 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.348512133719165, dt = 0.0015649848519055133 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.5%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.4%)
   LB compute        : 336.70 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234548611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.285453842882788e-28,-2.83321893827805e-27,2.0454490320493324e-17)
    sum a = (-3.4132877075514936e-25,-1.9286622610372002e-25,-3.294053277666593e-18)
    sum e = 1.2368650041133778e-09
    sum de = 1.0996228975071113e-13
Info: cfl dt = 0.0015649913129474138 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0253e+04 | 11520 |      1 | 3.808e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.795274724977954 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.350077118571071, dt = 0.0015649913129474138 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.8%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.5%)
   LB compute        : 287.63 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234548611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.9471163158983573e-28,-2.746539046633981e-27,2.0449911972175407e-17)
    sum a = (-2.619383112787797e-25,-8.314127174759185e-26,-2.5676501428670667e-18)
    sum e = 1.2368651760063498e-09
    sum de = 1.0969009765236665e-13
Info: cfl dt = 0.0015649978884119215 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8918e+04 | 11520 |      1 | 3.984e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.142498899471239 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.351642109884018, dt = 0.0015649978884119215 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.3%)
   patch tree reduce : 1.76 us    (0.6%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.5%)
   LB compute        : 261.70 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2347222222222225
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.622343721606897e-28,-2.7926527489886257e-27,2.044646201240737e-17)
    sum a = (1.872528363208501e-25,-4.535299962557653e-26,-1.852062427350134e-18)
    sum e = 1.2368653474581237e-09
    sum de = 1.0939774545710424e-13
Info: cfl dt = 0.0015650045762475846 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0304e+04 | 11520 |      1 | 3.801e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.820492197214502 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.35320710777243, dt = 0.0015650045762475846 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (2.0%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 281.71 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.38 us    (63.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2347222222222225
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.627830464678101e-30,-2.8283215244001603e-27,2.0444123472880636e-17)
    sum a = (6.723218312306599e-25,-3.3209354837982364e-25,-1.1473541056499837e-18)
    sum e = 1.2368655184373226e-09
    sum de = 1.0908544685163803e-13
Info: cfl dt = 0.00156501137518016 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7065e+04 | 11520 |      1 | 4.256e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.236572768434078 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.354772112348678, dt = 0.00156501137518016 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (2.1%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 1.03 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.5%)
   LB compute        : 261.99 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (71.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2347222222222225
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4264042968948048e-27,-3.5941817070213345e-27,2.044287928650899e-17)
    sum a = (-2.317078322689941e-25,2.3133822921102376e-25,-4.535851182791497e-19)
    sum e = 1.2368656889129049e-09
    sum de = 1.0875341682248908e-13
Info: cfl dt = 0.0015650182846552142 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9618e+04 | 11520 |      1 | 3.890e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.484975590508881 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.356337123723858, dt = 0.0015650182846552142 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.8%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 302.64 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234461805555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.5504083617410798e-28,-2.7764436092511848e-27,2.0442712295710344e-17)
    sum a = (2.5879148449253338e-27,2.8401047888702548e-25,2.29187537142239e-19)
    sum e = 1.2368658588541671e-09
    sum de = 1.0840187346640607e-13
Info: cfl dt = 0.0015650253047522667 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6396e+04 | 11520 |      1 | 4.364e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.90961960329819 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.357902142008513, dt = 0.0015650253047522667 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.8%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 306.10 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234635416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.2562686292963645e-28,-2.2933332331729644e-27,2.0443605255814958e-17)
    sum a = (9.386877513746186e-26,1.277092982744397e-25,9.009122373536335e-19)
    sum e = 1.2368660282307477e-09
    sum de = 1.0803103602494143e-13
Info: cfl dt = 0.0015650324360741517 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8163e+04 | 11520 |      1 | 4.090e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.773898484709521 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.359467167313265, dt = 0.0015650324360741517 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.7%)
   patch tree reduce : 2.31 us    (0.7%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 332.37 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (57.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234635416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.523814594705218e-28,-2.2123742143774035e-27,2.0445540845817938e-17)
    sum a = (-7.779998748057098e-25,-1.3440653342242706e-25,1.5615383997188287e-18)
    sum e = 1.2368661970126305e-09
    sum de = 1.0764112632714959e-13
Info: cfl dt = 0.001565039679617068 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0208e+04 | 11520 |      1 | 3.813e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.774142873712426 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.3610321997493395, dt = 0.001565039679617068 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.6%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 318.14 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234635416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1157435652424605e-27,-2.603950624879487e-27,2.0448501666030543e-17)
    sum a = (-3.009837885492006e-25,2.14480030444952e-25,2.211021232631786e-18)
    sum e = 1.2368663651701452e-09
    sum de = 1.0723236742854525e-13
Info: cfl dt = 0.0015650470366260897 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6573e+04 | 11520 |      1 | 4.335e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.996089696214288 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.362597239428957, dt = 0.0015650470366260897 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (1.8%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.4%)
   LB compute        : 316.14 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234635416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2287741439463268e-27,-2.0137039027291968e-27,2.045247025148644e-17)
    sum a = (7.605709756330535e-26,4.3437235332415965e-25,2.8493180211184096e-18)
    sum e = 1.2368665326739742e-09
    sum de = 1.0680498520017511e-13
Info: cfl dt = 0.001565054508442712 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9104e+04 | 11520 |      1 | 3.958e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.233860359531864 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.364162286465583, dt = 0.001565054508442712 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (1.9%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 312.99 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234635416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.974550031254378e-28,-1.1746425516146054e-27,2.0457429071669893e-17)
    sum a = (-1.4665544227043378e-25,1.0627856186436e-25,3.476390303558717e-18)
    sum e = 1.236866699495153e-09
    sum de = 1.0635920597723908e-13
Info: cfl dt = 0.0015650620963493104 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7704e+04 | 11520 |      1 | 4.158e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.549697398451459 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.365727340974026, dt = 0.0015650620963493104 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.6%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 330.87 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234635416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2197594352153437e-27,-1.242729606501022e-27,2.0463360539597708e-17)
    sum a = (-7.591702285840852e-26,-2.273974146173178e-25,4.092202322496313e-18)
    sum e = 1.2368668656050726e-09
    sum de = 1.0589525898643883e-13
Info: cfl dt = 0.0015650698014184772 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0322e+04 | 11520 |      1 | 3.799e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.82974205402481 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.367292403070375, dt = 0.0015650698014184772 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (2.0%)
   patch tree reduce : 1.74 us    (0.6%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.61 us    (0.5%)
   LB compute        : 276.50 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234635416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2814755180659209e-27,-1.8710721410288807e-27,2.0470247013871843e-17)
    sum a = (1.165927755308711e-25,1.3053159554637058e-25,4.696720739823002e-18)
    sum e = 1.2368670309754836e-09
    sum de = 1.0541337423592151e-13
Info: cfl dt = 0.001565077624371402 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8922e+04 | 11520 |      1 | 3.983e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.14553401887872 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.3688574728717935, dt = 0.001565077624371402 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (2.0%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 279.12 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234635416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.597197602831356e-28,-1.3831943709102364e-27,2.0478070803165244e-17)
    sum a = (-1.2349942929707053e-25,2.736338556985307e-25,5.289918680365828e-18)
    sum e = 1.2368671955784976e-09
    sum de = 1.0491378470380608e-13
Info: cfl dt = 0.0015650855654515802 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9664e+04 | 11520 |      1 | 3.884e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.50822222816342 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.370422550496165, dt = 0.0015650855654515802 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.8%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 294.55 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234635416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.326549061720837e-27,-8.308267614084045e-28,2.048681417896172e-17)
    sum a = (-2.6448045914091697e-25,2.1964129791300644e-25,5.871770886756256e-18)
    sum e = 1.2368673593865913e-09
    sum de = 1.0439672345703209e-13
Info: cfl dt = 0.0015650936243184405 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0343e+04 | 11520 |      1 | 3.797e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.84037034657463 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.3719876360616166, dt = 0.0015650936243184405 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.8%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 304.66 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234635416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8521759246504735e-27,-5.23849925150933e-28,2.0496459374404826e-17)
    sum a = (1.3988608945259855e-25,2.171996987251763e-25,6.442254659014104e-18)
    sum e = 1.2368675223726075e-09
    sum de = 1.0386242583330574e-13
Info: cfl dt = 0.0015651017999647554 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0306e+04 | 11520 |      1 | 3.801e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.822585677289755 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.373552729685935, dt = 0.0015651017999647554 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (1.9%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 311.88 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234635416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.327935939987142e-27,-2.1258243425708e-28,2.0506988589030596e-17)
    sum a = (3.9227782418526702e-25,2.163509292261976e-25,7.001352099666213e-18)
    sum e = 1.2368676845097561e-09
    sum de = 1.0331112890594016e-13
Info: cfl dt = 0.001565110090661701 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7815e+04 | 11520 |      1 | 4.142e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.60426367237688 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.3751178314859, dt = 0.001565110090661701 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (2.1%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.5%)
   LB compute        : 263.25 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234635416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.95115541070924e-28,1.2343216570115472e-28,2.0518383998007604e-17)
    sum a = (-2.341105988653677e-25,5.037232010307467e-25,7.549048030744489e-18)
    sum e = 1.236867845771621e-09
    sum de = 1.0274307052685963e-13
Info: cfl dt = 0.0015651184939331703 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7143e+04 | 11520 |      1 | 4.244e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.275685833164207 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.376682941576561, dt = 0.0015651184939331703 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (2.2%)
   patch tree reduce : 1.99 us    (0.7%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 263.12 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234635416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3681554097099903e-27,1.1299590674720879e-27,2.0530627754907273e-17)
    sum a = (-1.0752675230403458e-25,2.4202551313117093e-25,8.085329060512607e-18)
    sum e = 1.236868006132156e-09
    sum de = 1.0215849008797195e-13
Info: cfl dt = 0.0015651270065603741 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6877e+04 | 11520 |      1 | 4.286e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.145393000122475 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.3782480600704945, dt = 0.0015651270065603741 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.9%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 601.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.5%)
   LB compute        : 286.00 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234722222222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.445127153489924e-27,1.3287160590119387e-27,2.0543701993464496e-17)
    sum a = (-3.629987436661667e-25,1.1422953496508717e-25,8.61018796103466e-18)
    sum e = 1.2368681655656913e-09
    sum de = 1.0155762850680406e-13
Info: cfl dt = 0.0015651356246172688 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6586e+04 | 11520 |      1 | 4.333e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.003091931460192 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.379813187077055, dt = 0.0015651356246172688 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (2.0%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 290.02 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.36 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234722222222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1857201476968523e-27,1.4012671283180247e-27,2.055758884082927e-17)
    sum a = (-1.6057692630760446e-25,-1.2814061741526058e-25,9.123619337858844e-18)
    sum e = 1.236868324046934e-09
    sum de = 1.0094072774166607e-13
Info: cfl dt = 0.0015651443435352813 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9115e+04 | 11520 |      1 | 3.957e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.240227867125276 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.381378322701672, dt = 0.0015651443435352813 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (1.9%)
   patch tree reduce : 2.30 us    (0.7%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 305.24 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234722222222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.3188604612621426e-27,1.0186620866011028e-27,2.0572270416851074e-17)
    sum a = (2.2760405947899727e-25,-3.7301477850542217e-25,9.625618868451738e-18)
    sum e = 1.2368684815509677e-09
    sum de = 1.0030803095614453e-13
Info: cfl dt = 0.0015651531581953703 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0191e+04 | 11520 |      1 | 3.816e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.766442813713116 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.382943467045208, dt = 0.0015651531581953703 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (2.0%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.5%)
   LB compute        : 293.24 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (62.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234722222222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6406769890389444e-27,2.4686433140230945e-28,2.0587728835507334e-17)
    sum a = (4.161522401005763e-25,-2.741407597048652e-25,1.011618912791768e-17)
    sum e = 1.2368686380532607e-09
    sum de = 9.965978225080355e-14
Info: cfl dt = 0.0015651620630439947 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7769e+04 | 11520 |      1 | 4.149e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.581924721570688 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.384508620203404, dt = 0.0015651620630439947 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.9%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 290.48 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 us    (63.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234722222222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.466891815792693e-28,-1.0496934878096796e-28,2.060394621975898e-17)
    sum a = (1.6448376238378595e-25,-4.8623952016657134e-26,1.059533169666218e-17)
    sum e = 1.2368687935296604e-09
    sum de = 9.899622740144831e-14
Info: cfl dt = 0.001565171052229586 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9889e+04 | 11520 |      1 | 3.854e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.618951727785145 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.386073782266448, dt = 0.001565171052229586 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (1.7%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.4%)
   LB compute        : 352.36 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234722222222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.86359976994997e-28,-9.534788080847626e-30,2.062090469407518e-17)
    sum a = (3.411276734065351e-25,2.7872716613153618e-25,1.1063055748988816e-17)
    sum e = 1.236868947956396e-09
    sum de = 9.831761198476651e-14
Info: cfl dt = 0.0015651801197541543 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0116e+04 | 11520 |      1 | 3.825e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.729988027236264 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.387638953318677, dt = 0.0015651801197541543 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (1.9%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (0.5%)
   LB compute        : 311.96 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234722222222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.026289917065781e-28,6.8520454344636805e-28,2.0638586403083374e-17)
    sum a = (3.3893432542837357e-25,1.8546445679644966e-25,1.1519370093215775e-17)
    sum e = 1.2368691013100854e-09
    sum de = 9.762418401613807e-14
Info: cfl dt = 0.0015651892596352673 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8370e+04 | 11520 |      1 | 4.061e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.876438992751366 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.389204133438431, dt = 0.0015651892596352673 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.7%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 309.86 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234722222222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.021946972284817e-28,8.977436377576261e-28,2.0656973504513533e-17)
    sum a = (-4.315410413434978e-26,-4.119929921799273e-26,1.1964287344149571e-17)
    sum e = 1.2368692535677326e-09
    sum de = 9.691619131894529e-14
Info: cfl dt = 0.0015651984660720005 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0217e+04 | 11520 |      1 | 3.812e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.779997859931905 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.390769322698066, dt = 0.0015651984660720005 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (1.9%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 302.78 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234722222222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.102264371742481e-29,6.515727454884691e-28,2.067604817856236e-17)
    sum a = (-2.860713799907549e-25,-1.8286059285146182e-25,1.239782341524394e-17)
    sum e = 1.2368694047067273e-09
    sum de = 9.619388327008533e-14
Info: cfl dt = 0.001565207733610032 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0198e+04 | 11520 |      1 | 3.815e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.770573886658175 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.3923345211641385, dt = 0.001565207733610032 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (2.1%)
   patch tree reduce : 2.19 us    (0.8%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.5%)
   LB compute        : 260.98 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234722222222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.908101414459766e-28,2.602997146071402e-28,2.069579263267317e-17)
    sum a = (-1.9966817056081344e-25,-2.313215866718281e-25,1.2819997326061355e-17)
    sum e = 1.2368695547048523e-09
    sum de = 9.545750906690537e-14
Info: cfl dt = 0.001565217057298904 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8470e+04 | 11520 |      1 | 4.046e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.925353087434322 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.393899728897749, dt = 0.001565217057298904 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (2.1%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 281.79 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234548611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.480760598455743e-28,-1.0106875365698484e-28,2.0716189106093874e-17)
    sum a = (4.002738708296491e-26,-3.075652193619515e-25,1.3230829885204918e-17)
    sum e = 1.236869703540278e-09
    sum de = 9.470732003539134e-14
Info: cfl dt = 0.001565226432836888 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8245e+04 | 11520 |      1 | 4.079e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.815374442361119 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.395464945955047, dt = 0.001565226432836888 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (1.9%)
   patch tree reduce : 2.28 us    (0.7%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.58 us    (0.5%)
   LB compute        : 305.20 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234548611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.8595606751390865e-28,-6.545198618043675e-28,2.073721987183453e-17)
    sum a = (-4.3877361150227894e-26,7.093604956497373e-26,1.3630345094552804e-17)
    sum e = 1.236869851191567e-09
    sum de = 9.394356726396066e-14
Info: cfl dt = 0.0015652358566973243 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8266e+04 | 11520 |      1 | 4.076e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.82566233201486 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.397030172387884, dt = 0.0015652358566973243 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (2.0%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 290.43 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234548611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.024538418835378e-28,-2.441772547613433e-28,2.0758867242599744e-17)
    sum a = (-1.8526127913043595e-25,-2.953579168619339e-25,1.4018570877538898e-17)
    sum e = 1.236869997637676e-09
    sum de = 9.316650262244553e-14
Info: cfl dt = 0.0015652453262325905 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0104e+04 | 11520 |      1 | 3.827e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.724911643225951 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.3985954082445815, dt = 0.0014045917554188492 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.8%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 317.47 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234548611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0935535129815787e-27,-9.619734374658813e-28,2.0778861444129573e-17)
    sum a = (2.433208574318999e-26,2.946062288415965e-25,1.4357071169900192e-17)
    sum e = 1.2368701278895682e-09
    sum de = 9.245680000765908e-14
Info: cfl dt = 0.0015652538644941043 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0242e+04 | 11520 |      1 | 3.809e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.274104831811488 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 2515                                                    [SPH][rank=0]
Info: time since start : 1143.927072677 (s)                                           [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[-4.38080475e-33 -2.98591374e-19 -8.52353732e-15 ...  1.13170406e-10
 -8.76253520e-14 -6.65339086e-12]
(11520, 3)
[[-4.38080475e-33 -2.98591374e-19 -8.52353732e-15  1.31875862e-11
  -2.24444349e-14]
 [ 2.27814060e-07 -7.65243732e-37 -1.21854439e-23  4.14835205e-09
   4.16496715e-10]
 [ 2.24232542e-05  1.46016376e-05 -1.73916710e-15  8.40087805e-09
   6.42214841e-10]
 ...
 [ 3.28323687e-05  3.32635840e-05  7.11530902e-06 -2.36889703e-16
  -3.92169610e-11]
 [ 8.00592643e-06 -9.09054898e-19 -2.78014522e-24  1.11949842e-08
   2.74426821e-10]
 [-1.84495872e-54 -3.83006844e-34  1.13170406e-10 -8.76253520e-14
  -6.65339086e-12]]
compute original rho
Info: Dumping state to _to_trash/dusty_settle/dump/0000044.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.27 us   (70.2%)
Info: dump to _to_trash/dusty_settle/dump/0000044.sham                      [Shamrock Dump][rank=0]
              - took 1.23 ms, bandwidth = 2.40 GB/s
Info: evolve_until (target_time = 4.50s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 4.4, dt = 0.0015652538644941043 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.53 us    (1.0%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 329.95 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234548611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.097921426961517e-28,-5.980912523440783e-29,2.080157163260233e-17)
    sum a = (2.9868642470106616e-25,-3.668306883159677e-25,1.4724254375855643e-17)
    sum e = 1.2368702721103622e-09
    sum de = 9.165643099815426e-14
Info: cfl dt = 0.0015652634137100557 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4436e+04 | 11520 |      1 | 4.714e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.95288096859663 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.4015652538644945, dt = 0.0015652634137100557 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (1.9%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 303.72 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.39 us    (62.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234548611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2190052260881746e-28,-1.1719121350278173e-27,2.0824906336729842e-17)
    sum a = (1.5107403642688186e-25,-1.698003602176666e-25,1.507994836654388e-17)
    sum e = 1.2368704149504225e-09
    sum de = 9.084222839634845e-14
Info: cfl dt = 0.0015652730096706534 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0169e+04 | 11520 |      1 | 3.818e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.757086836113327 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.403130517278204, dt = 0.0015652730096706534 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (1.8%)
   patch tree reduce : 2.16 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 328.89 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234548611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1511089610332406e-28,-1.2793952006664634e-27,2.0848788950257908e-17)
    sum a = (1.3225548523138784e-25,8.425146779976909e-26,1.5424485443032228e-17)
    sum e = 1.2368705565060825e-09
    sum de = 9.001569833682039e-14
Info: cfl dt = 0.0015652826504055732 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0075e+04 | 11520 |      1 | 3.830e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.71090847760767 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.4046957902878745, dt = 0.0015652826504055732 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (2.0%)
   patch tree reduce : 1.95 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 268.98 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234548611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.627830464678101e-29,-9.57726122775322e-28,2.0873202277065166e-17)
    sum a = (-1.9740825242586926e-25,-7.602450592404717e-26,1.5757905339506962e-17)
    sum e = 1.2368706967592132e-09
    sum de = 8.917709822099361e-14
Info: cfl dt = 0.0015652923381148293 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7520e+04 | 11520 |      1 | 4.186e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.461421022739838 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.40626107293828, dt = 0.0015652923381148293 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.2%)
   patch tree reduce : 1.70 us    (0.6%)
   gen split merge   : 941.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.5%)
   LB compute        : 267.14 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234548611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.958089802040766e-28,-1.210224647134496e-27,2.0898128953737367e-17)
    sum a = (1.2858580533874452e-25,-9.951198280305736e-26,1.608025028023553e-17)
    sum e = 1.236870835691111e-09
    sum de = 8.832668249256777e-14
Info: cfl dt = 0.0015653020758793783 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0252e+04 | 11520 |      1 | 3.808e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.798030045775661 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.407826365276395, dt = 0.0015653020758793783 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.72 us    (2.0%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 319.10 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234548611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.704412619294963e-29,-1.3508194313811764e-27,2.0923551684922006e-17)
    sum a = (-3.553986507668147e-25,-2.78644646874691e-25,1.6391566060740413e-17)
    sum e = 1.236870973283469e-09
    sum de = 8.746470646044472e-14
Info: cfl dt = 0.0015653118675604436 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5108e+04 | 11520 |      1 | 4.588e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.281761548494638 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.409391667352274, dt = 0.0015653118675604436 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.8%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 299.33 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234548611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.76362299478797e-28,-1.9424096918519496e-27,2.0949453249440993e-17)
    sum a = (2.004871221770666e-25,1.0679101338375972e-25,1.669189977000364e-17)
    sum e = 1.2368711095183783e-09
    sum de = 8.659142467416147e-14
Info: cfl dt = 0.0015653217176688254 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9811e+04 | 11520 |      1 | 3.864e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.582558380311818 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.410956979219835, dt = 0.0015653217176688254 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.0%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.4%)
   LB compute        : 313.78 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.36 us    (62.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234548611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.170464486767496e-28,-1.4854333031044161e-27,2.097581650059367e-17)
    sum a = (3.463118243659836e-25,3.142846445621997e-25,1.6981304626121044e-17)
    sum e = 1.2368712443783295e-09
    sum de = 8.570709285078139e-14
Info: cfl dt = 0.0015653316312128152 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9911e+04 | 11520 |      1 | 3.851e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.631173499646424 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.412522300937503, dt = 0.0015653316312128152 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.6%)
   patch tree reduce : 1.98 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 343.76 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234548611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.285453842882788e-28,-8.043027145653193e-28,2.100262437973715e-17)
    sum a = (-7.750243274853522e-25,2.300997469192133e-25,1.725982852347005e-17)
    sum e = 1.2368713778462142e-09
    sum de = 8.481196661781571e-14
Info: cfl dt = 0.0015653416135296254 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0194e+04 | 11520 |      1 | 3.815e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.77007191937811 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.414087632568716, dt = 0.0015653416135296254 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (2.0%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 1.57 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.5%)
   LB compute        : 280.31 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234548611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6545457717019953e-27,-5.216395879140092e-28,2.1029859898702063e-17)
    sum a = (3.770665433604326e-25,1.941074821520631e-25,1.7527530280500667e-17)
    sum e = 1.2368715099053228e-09
    sum de = 8.390630143295685e-14
Info: cfl dt = 0.0015653516701060006 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0032e+04 | 11520 |      1 | 3.836e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.690890840528938 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.415652974182246, dt = 0.0015653516701060006 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.72 us    (2.1%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 295.10 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234288194444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.560238049593248e-28,-2.529319238173943e-28,2.1057506169829573e-17)
    sum a = (-5.023931847733601e-25,2.0046146492913995e-25,1.778446600337211e-17)
    sum e = 1.2368716405393471e-09
    sum de = 8.299035344509137e-14
Info: cfl dt = 0.0015653618063939181 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0200e+04 | 11520 |      1 | 3.815e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.7730727913311 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 4.417218325852351, dt = 0.0015653618063939181 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.2%)
   patch tree reduce : 1.98 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.5%)
   LB compute        : 273.42 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234288194444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6372097933731814e-27,7.57582252969166e-29,2.1085546391018056e-17)
    sum a = (2.1303143609579632e-26,-6.872605904761654e-26,1.80306946647289e-17)
    sum e = 1.2368717697323789e-09
    sum de = 8.2064377798223e-14
Info: cfl dt = 0.0015653720276275155 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0176e+04 | 11520 |      1 | 3.818e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.761427503662203 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.418783687658745, dt = 0.0015653720276275155 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.7%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 295.93 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234288194444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2114381656175129e-27,-2.5267188414246207e-28,2.1113963854545733e-17)
    sum a = (2.145181695972754e-25,-5.609901784030173e-25,1.8266279043469326e-17)
    sum e = 1.2368718974689101e-09
    sum de = 8.112863043286422e-14
Info: cfl dt = 0.0015653823386475299 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9240e+04 | 11520 |      1 | 3.940e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.303651168651793 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.420349059686373, dt = 0.0015653823386475299 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.9%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.52 us    (0.5%)
   LB compute        : 290.67 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234288194444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.170160636797415e-28,-1.5138643075636709e-27,2.1142741953806735e-17)
    sum a = (-2.7640622535287457e-25,-2.470945531945161e-25,1.84912817159596e-17)
    sum e = 1.2368720237338317e-09
    sum de = 8.018336684188246e-14
Info: cfl dt = 0.0015653927437393397 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9761e+04 | 11520 |      1 | 3.871e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.558711261462705 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.42191444202502, dt = 0.0015653927437393397 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (1.9%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 313.66 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234114583333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5394348755986713e-27,-1.632789118899334e-27,2.1171864179560975e-17)
    sum a = (-3.627123533041747e-25,-5.117872047101778e-25,1.870577062549496e-17)
    sum e = 1.2368721485124354e-09
    sum de = 7.922884154915172e-14
Info: cfl dt = 0.0015654032464902335 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8742e+04 | 11520 |      1 | 4.008e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.060382854498952 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.423479834768759, dt = 0.0015654032464902335 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (1.9%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 309.95 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234114583333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1545153867049872e-27,-2.6648865887052676e-27,2.120131413337786e-17)
    sum a = (5.200640942034866e-25,-7.67082369093356e-27,1.8909812728171646e-17)
    sum e = 1.2368722717904112e-09
    sum de = 7.826531075604221e-14
Info: cfl dt = 0.0015654138496711512 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0046e+04 | 11520 |      1 | 3.834e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.698154751060459 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.425045238015249, dt = 0.0015654138496711512 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (2.1%)
   patch tree reduce : 1.62 us    (0.6%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 272.23 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.234114583333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.358836851008926e-28,-2.273960277390515e-27,2.1231075520161713e-17)
    sum a = (6.706991836590829e-25,-4.659009503912069e-26,1.910347895391684e-17)
    sum e = 1.2368723935538481e-09
    sum de = 7.729302870917808e-14
Info: cfl dt = 0.0015654245551461976 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8031e+04 | 11520 |      1 | 4.110e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.712750176786987 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.42661065186492, dt = 0.0015654245551461976 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (1.8%)
   patch tree reduce : 2.19 us    (0.6%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 328.16 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.233854166666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.0759744546767e-28,-2.3878576550108217e-27,2.126113215909008e-17)
    sum a = (6.522627174259559e-26,3.3898910711989265e-25,1.9286840452572595e-17)
    sum e = 1.2368725137892347e-09
    sum de = 7.631224985862341e-14
Info: cfl dt = 0.0015654353638151182 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0104e+04 | 11520 |      1 | 3.827e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.726592149500672 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.428176076420066, dt = 0.0015654353638151182 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.8%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 322.29 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.233854166666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.407681440299686e-28,-1.5435955103975867e-27,2.129146798050295e-17)
    sum a = (-9.999322956146523e-26,5.991965943223236e-25,1.9459972255090445e-17)
    sum e = 1.236872632483455e-09
    sum de = 7.532322893438632e-14
Info: cfl dt = 0.0015654462755896896 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0148e+04 | 11520 |      1 | 3.821e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.748545844205866 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.429741511783882, dt = 0.0015654462755896896 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.9%)
   patch tree reduce : 1.77 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 272.46 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.233854166666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.71279465888681e-28,-4.108626863928886e-28,2.1322067034916793e-17)
    sum a = (-2.0729184039069263e-25,-6.344760036605929e-26,1.9622949389964033e-17)
    sum e = 1.236872749623792e-09
    sum de = 7.432621914005003e-14
Info: cfl dt = 0.001565457289405783 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7299e+04 | 11520 |      1 | 4.220e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.354741477031261 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.431306958059472, dt = 0.001565457289405783 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (2.0%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 313.28 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.233854166666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.492037934568233e-28,-1.0330509486140182e-27,2.1352913490064252e-17)
    sum a = (-8.982602499118247e-26,1.1888251154854083e-25,1.977585132266006e-17)
    sum e = 1.2368728651979234e-09
    sum de = 7.332147452255316e-14
Info: cfl dt = 0.0015654684032708407 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0044e+04 | 11520 |      1 | 3.834e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.69759918726881 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.432872415348878, dt = 0.0015654684032708407 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    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   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 331.35 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.233854166666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.991314110438072e-28,-6.780967923315544e-28,2.1383991641159128e-17)
    sum a = (-4.1863613907552876e-26,-3.6283578546987584e-25,1.9918756342304455e-17)
    sum e = 1.2368729791939254e-09
    sum de = 7.230924712366922e-14
Info: cfl dt = 0.0015654796143463846 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0159e+04 | 11520 |      1 | 3.820e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.754278259012873 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.434437883752149, dt = 0.0015654796143463846 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (2.0%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 266.54 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.233854166666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.317230503019773e-28,-1.630622121608232e-27,2.1415285904808676e-17)
    sum a = (1.5061636659900118e-25,-2.0781191974055703e-25,2.0051746830950192e-17)
    sum e = 1.2368730916002659e-09
    sum de = 7.12897901503005e-14
Info: cfl dt = 0.0015654909190624857 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9751e+04 | 11520 |      1 | 3.872e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.55462791064773 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.4360033633664955, dt = 0.0015654909190624857 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (2.0%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.54 us    (0.5%)
   LB compute        : 270.34 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (64.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.233854166666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4686433140230945e-28,-1.845761612668812e-27,2.14467808293396e-17)
    sum a = (4.063789089579242e-25,-2.34944112703417e-25,2.0174905071195132e-17)
    sum e = 1.236873202405809e-09
    sum de = 7.026335499024572e-14
Info: cfl dt = 0.0015655023132609151 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0150e+04 | 11520 |      1 | 3.821e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.750016415501365 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.437568854285558, dt = 0.0015655023132609151 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (2.0%)
   patch tree reduce : 2.28 us    (0.8%)
   gen split merge   : 1.34 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 277.94 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.233854166666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.824888718481459e-28,-2.2447491539064633e-27,2.147846109142866e-17)
    sum a = (2.7070199504356166e-25,-2.707047688000943e-26,2.028831710895731e-17)
    sum e = 1.2368733115998094e-09
    sum de = 6.923019291176058e-14
Info: cfl dt = 0.0015655137923633357 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0156e+04 | 11520 |      1 | 3.820e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.752712988155386 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.439134356598818, dt = 0.0015655137923633357 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (2.0%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 1.09 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 270.34 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.233680555555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.986971165657109e-28,-2.1282513795368343e-27,2.151031150512635e-17)
    sum a = (-3.7451538078956432e-25,8.30497377820157e-26,2.0392069030254615e-17)
    sum e = 1.236873419171915e-09
    sum de = 6.819055464025408e-14
Info: cfl dt = 0.0015655253515582015 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9833e+04 | 11520 |      1 | 3.862e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.594883566244018 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.440699870391182, dt = 0.0015655253515582015 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.0%)
   patch tree reduce : 2.42 us    (0.7%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 309.25 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.233680555555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7682697895390144e-28,-1.9158856450088643e-27,2.1542317018668507e-17)
    sum a = (-4.707862290842666e-25,-5.106076647446853e-25,2.0486248372747294e-17)
    sum e = 1.2368735251121667e-09
    sum de = 6.714468966619936e-14
Info: cfl dt = 0.0015655369860013988 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0144e+04 | 11520 |      1 | 3.822e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.747152267233869 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.44226539574274, dt = 0.0015655369860013988 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (1.8%)
   patch tree reduce : 2.16 us    (0.6%)
   gen split merge   : 1.39 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.58 us    (0.5%)
   LB compute        : 316.45 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.233420138888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.004099864804899e-27,-3.1772514282133612e-27,2.1574462718306852e-17)
    sum a = (-1.991730550197425e-25,5.440588218083979e-25,2.057094487932011e-17)
    sum e = 1.2368736294109905e-09
    sum de = 6.609284737404285e-14
Info: cfl dt = 0.0015655486910227806 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0121e+04 | 11520 |      1 | 3.825e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.736268853489976 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.4438309327287415, dt = 0.0015655486910227806 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.0%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 304.17 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.233420138888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0886994390495108e-27,-1.5134309081054504e-27,2.1606733831854538e-17)
    sum a = (4.77365579579618e-25,1.8392779567738358e-26,2.0646249403471328e-17)
    sum e = 1.2368737320592053e-09
    sum de = 6.50352762518469e-14
Info: cfl dt = 0.0015655604623331459 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7924e+04 | 11520 |      1 | 4.125e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.661495780805744 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.445396481419764, dt = 0.0015655604623331459 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (2.2%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1.05 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 263.11 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 us    (62.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.233420138888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8722856595118975e-28,-1.8708121013539483e-27,2.1639115730054315e-17)
    sum a = (-4.7476310251289654e-26,-1.3509615864034727e-25,2.0712255600264723e-17)
    sum e = 1.2368738330480152e-09
    sum de = 6.397222344725285e-14
Info: cfl dt = 0.0015655722962236865 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0095e+04 | 11520 |      1 | 3.828e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.723726131619172 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.446962041882097, dt = 0.0015655722962236865 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (2.0%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 1.06 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 273.31 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (56.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.233420138888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.1759512298387e-28,-2.2022760070008694e-27,2.1671593932005377e-17)
    sum a = (-2.406670658693251e-25,1.8494888480095072e-25,2.0769055741115167e-17)
    sum e = 1.2368739323690132e-09
    sum de = 6.290393597307322e-14
Info: cfl dt = 0.0015655841897514217 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0075e+04 | 11520 |      1 | 3.830e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.713812338961601 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.448527614178321, dt = 0.0015655841897514217 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.9%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 305.98 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.233420138888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.182581771200145e-28,-1.667894475015182e-27,2.170415409966371e-17)
    sum a = (3.4254506299469894e-25,-3.1114301856945206e-25,2.0816746219060822e-17)
    sum e = 1.2368740300141734e-09
    sum de = 6.183065982934149e-14
Info: cfl dt = 0.0015655961409039988 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0099e+04 | 11520 |      1 | 3.827e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.725966296995106 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.450093198368072, dt = 0.0015655961409039988 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (2.1%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.5%)
   LB compute        : 265.65 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.233246527777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.71279465888681e-28,-2.5349534311308077e-27,2.1736782048949583e-17)
    sum a = (-1.4125008422750962e-25,9.344231007057304e-26,2.085542287785978e-17)
    sum e = 1.2368741259758566e-09
    sum de = 6.075263919740502e-14
Info: cfl dt = 0.0015656081487379282 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0235e+04 | 11520 |      1 | 3.810e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.792670487018162 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.451658794508976, dt = 0.0015656081487379282 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (2.1%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.5%)
   LB compute        : 268.99 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.233246527777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.396404104187196e-28,-2.0674020956026977e-27,2.17694637449552e-17)
    sum a = (9.782553883123035e-26,3.714507265405966e-25,2.0885183127382995e-17)
    sum e = 1.2368742202468033e-09
    sum de = 5.967011848538891e-14
Info: cfl dt = 0.001565620213485107 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0148e+04 | 11520 |      1 | 3.821e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.749811058955535 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.453224402657714, dt = 0.001565620213485107 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (2.2%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.5%)
   LB compute        : 266.80 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.233246527777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.182581771200145e-29,-1.2584186668885985e-27,2.180218530633694e-17)
    sum a = (-1.49683690964911e-25,-1.8911541383249785e-25,2.0906126118205632e-17)
    sum e = 1.2368743128201388e-09
    sum de = 5.858334002341915e-14
Info: cfl dt = 0.0015656323366225167 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0229e+04 | 11520 |      1 | 3.811e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.789938781724342 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.454790022871199, dt = 0.0015656323366225167 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.7%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 306.03 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.233246527777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.228531063970262e-28,-2.000398539361832e-27,2.1834933007755574e-17)
    sum a = (-4.053484584060595e-25,-7.138886531892235e-26,2.0918353122884488e-17)
    sum e = 1.236874403689362e-09
    sum de = 5.749254619662319e-14
Info: cfl dt = 0.0015656445209029876 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0131e+04 | 11520 |      1 | 3.823e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.741902869029236 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.456355655207822, dt = 0.0015656445209029876 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (2.2%)
   patch tree reduce : 1.93 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 265.75 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.233246527777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3633013357779224e-27,-2.0214617530313407e-27,2.186769328421095e-17)
    sum a = (4.360178843871307e-25,4.618731091862903e-25,2.092196376513379e-17)
    sum e = 1.236874492848354e-09
    sum de = 5.639797721753349e-14
Info: cfl dt = 0.0015656567703444901 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7253e+04 | 11520 |      1 | 4.227e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.333837279071876 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.457921299728724, dt = 0.0015656567703444901 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (2.2%)
   patch tree reduce : 2.14 us    (0.8%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.5%)
   LB compute        : 260.40 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (53.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.233246527777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0109734861424086e-29,-8.66365516982473e-28,2.1900452724907822e-17)
    sum a = (-5.463509848630336e-25,-2.501904122044757e-25,2.091706200912104e-17)
    sum e = 1.2368745802913686e-09
    sum de = 5.529987265683525e-14
Info: cfl dt = 0.0015656690901769868 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9441e+04 | 11520 |      1 | 3.913e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.404583376137722 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.4594869564990685, dt = 0.0015656690901769868 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (2.0%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 269.41 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (64.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.233246527777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.646224502104165e-27,-1.817937367451066e-27,2.1933198085121306e-17)
    sum a = (-4.151758778010975e-25,-4.159154306366047e-25,2.090374949621938e-17)
    sum e = 1.2368746660130358e-09
    sum de = 5.419847105040654e-14
Info: cfl dt = 0.0015656814867475372 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0127e+04 | 11520 |      1 | 3.824e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.740335005780157 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.461052625589246, dt = 0.0015656814867475372 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.9%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.5%)
   LB compute        : 301.40 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.233246527777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.214151152156107e-27,-2.6045573841209954e-27,2.1965916277208507e-17)
    sum a = (7.853614246432573e-26,-1.5467159864967732e-26,2.0882131351172466e-17)
    sum e = 1.2368747500083561e-09
    sum de = 5.3094009687141534e-14
Info: cfl dt = 0.001565693967385556 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0143e+04 | 11520 |      1 | 3.822e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.748222670189824 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.462618307075993, dt = 0.001565693967385556 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (2.2%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 1.04 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 266.12 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.232986111111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6885242892264704e-27,-2.3399236749316516e-27,2.1998594380677254e-17)
    sum a = (-2.3801327430675025e-25,2.446026796695324e-25,2.085231321645251e-17)
    sum e = 1.2368748322727026e-09
    sum de = 5.198672412522171e-14
Info: cfl dt = 0.0015657065402313395 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9958e+04 | 11520 |      1 | 3.845e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.657938769070634 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.464184001043378, dt = 0.0015657065402313395 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (2.1%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 992.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.5%)
   LB compute        : 260.11 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (63.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2328125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.3209407786616003e-27,-1.7299572774323358e-27,2.2031219640852627e-17)
    sum a = (-4.968768764691315e-25,-2.574046062262283e-27,2.0814401299159016e-17)
    sum e = 1.236874912801814e-09
    sum de = 5.087684929429758e-14
Info: cfl dt = 0.0015657192140322808 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0183e+04 | 11520 |      1 | 3.817e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.768064394668901 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.465749707583609, dt = 0.0015657192140322808 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (2.0%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.5%)
   LB compute        : 280.46 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2328125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.3208800086675844e-27,-1.920306319482712e-27,2.206377946940813e-17)
    sum a = (-5.002192530909268e-26,1.7724304243379297e-27,2.076850202479949e-17)
    sum e = 1.2368749915917982e-09
    sum de = 4.976461830144676e-14
Info: cfl dt = 0.0015657319979119316 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0205e+04 | 11520 |      1 | 3.814e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.778960616236622 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.467315426797642, dt = 0.0015657319979119316 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (1.9%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 307.55 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2328125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.030329011876664e-27,-1.9061774971447285e-27,2.209626144491072e-17)
    sum a = (-3.3121634787638563e-25,-1.514401722891864e-26,2.0714724321618733e-17)
    sum e = 1.2368750686391257e-09
    sum de = 4.865026351005414e-14
Info: cfl dt = 0.0015657449011190515 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9411e+04 | 11520 |      1 | 3.917e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.390516679824755 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.468881158795554, dt = 0.0015657449011190515 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.72 us    (2.1%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.5%)
   LB compute        : 293.69 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2328125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.748038514689558e-27,-1.940329374452492e-27,2.2128653318161696e-17)
    sum a = (-7.764715349562415e-26,2.529118140825329e-25,2.0653175722723727e-17)
    sum e = 1.2368751439406304e-09
    sum de = 4.7534015009583035e-14
Info: cfl dt = 0.0015657579327627736 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0155e+04 | 11520 |      1 | 3.820e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.754693422424847 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.470446903696673, dt = 0.0015657579327627736 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.7%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 321.77 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2328125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.690483066637896e-27,-1.3171876334232776e-27,2.216094300716578e-17)
    sum a = (-3.910157649629294e-25,2.124732175936085e-25,2.0583966462705676e-17)
    sum e = 1.236875217493504e-09
    sum de = 4.641610218367871e-14
Info: cfl dt = 0.0015657711015423818 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0170e+04 | 11520 |      1 | 3.818e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.762346396133527 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.472012661629436, dt = 0.0015657711015423818 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.8%)
   patch tree reduce : 2.17 us    (0.6%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 318.94 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (62.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2328125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.564909813543267e-27,-1.0441459747444592e-27,2.2193118604566878e-17)
    sum a = (3.3170730278265764e-25,-7.858984932518839e-25,2.050720598555994e-17)
    sum e = 1.236875289295298e-09
    sum de = 4.529675267961432e-14
Info: cfl dt = 0.0015657844154794273 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4694e+04 | 11520 |      1 | 4.665e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.082749648457373 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.473578432730978, dt = 0.0015657844154794273 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.00 us    (2.2%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 300.53 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.94 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2328125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.4339105873714504e-27,-3.0462781119391724e-27,2.2225168373456926e-17)
    sum a = (-1.6471259729772632e-26,-4.4872654338041755e-25,2.0423005739223536e-17)
    sum e = 1.2368753593439184e-09
    sum de = 4.4176192744227204e-14
Info: cfl dt = 0.0015657978816602724 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5757e+04 | 11520 |      1 | 4.473e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.603209938476859 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.4751442171464575, dt = 0.0015657978816602724 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (1.9%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 310.56 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.50 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2328125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.754279466887931e-27,-3.471269620670044e-27,2.2257080752795808e-17)
    sum a = (2.1260982510283955e-25,3.8724172248074656e-25,2.0331476007239274e-17)
    sum e = 1.2368754276376227e-09
    sum de = 4.3054646992943525e-14
Info: cfl dt = 0.0015658115059970423 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8939e+04 | 11520 |      1 | 3.981e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.160378379245273 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.476710015028118, dt = 0.0015658115059970423 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.2%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.5%)
   LB compute        : 276.85 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2328125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.223105090893074e-27,-2.2272398157943615e-27,2.228884435335822e-17)
    sum a = (2.0442793677077256e-25,-2.924596880049228e-25,2.023272939850726e-17)
    sum e = 1.2368754941750198e-09
    sum de = 4.193233873078728e-14
Info: cfl dt = 0.0015658252930144765 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0229e+04 | 11520 |      1 | 3.811e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.791645567344919 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.478275826534115, dt = 0.0015658252930144765 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (2.1%)
   patch tree reduce : 1.80 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 276.22 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (63.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2328125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.9089771635749668e-27,-3.2174708979362095e-27,2.2320447963465616e-17)
    sum a = (1.3909764915820408e-25,-8.071978229462312e-27,2.0126878479040803e-17)
    sum e = 1.236875558955068e-09
    sum de = 4.0809489562689904e-14
Info: cfl dt = 0.001565839245669581 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7136e+04 | 11520 |      1 | 4.245e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.277953989239052 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.47984165182713, dt = 0.001565839245669581 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (2.2%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.5%)
   LB compute        : 265.40 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2328125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.7626615064797777e-27,-3.001811327525765e-27,2.235188054774358e-17)
    sum a = (-1.5224664200104283e-25,2.353931145421333e-25,2.001403476479811e-17)
    sum e = 1.2368756219770683e-09
    sum de = 3.968631916310413e-14
Info: cfl dt = 0.001565853365210422 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7906e+04 | 11520 |      1 | 4.128e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.655246700626133 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.481407491072799, dt = 0.001565853365210422 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.7%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.5%)
   LB compute        : 312.82 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2328125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.245295143153956e-27,-2.4347514763902634e-27,2.238313124386613e-17)
    sum a = (1.5187218486914044e-25,5.381059935698498e-25,1.9894312617261392e-17)
    sum e = 1.236875683240666e-09
    sum de = 3.8563046292194126e-14
Info: cfl dt = 0.0015658676510778892 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0078e+04 | 11520 |      1 | 3.830e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.717886502081269 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.48297334443801, dt = 0.0015658676510778892 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (2.0%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 268.69 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2328125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.735617380286828e-27,-1.3605275792453122e-27,2.2414189370714705e-17)
    sum a = (-8.704602750637388e-26,3.1627377471564785e-25,1.9767826971602694e-17)
    sum e = 1.2368757427458455e-09
    sum de = 3.743988765762162e-14
Info: cfl dt = 0.0015658821008560507 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6694e+04 | 11520 |      1 | 4.316e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.062498570138223 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.4845392120890875, dt = 0.0015658821008560507 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (2.0%)
   patch tree reduce : 1.68 us    (0.6%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 274.22 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.232552083333332
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.0747091163984272e-27,-1.0430191361530862e-27,2.2445044427254823e-17)
    sum a = (-4.114195180168101e-25,1.4432479334390805e-25,1.9634689750348084e-17)
    sum e = 1.2368758004929288e-09
    sum de = 3.631705837774596e-14
Info: cfl dt = 0.001565896710272003 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0311e+04 | 11520 |      1 | 3.801e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.832403410899717 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.486105094189943, dt = 0.001565896710272003 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (1.8%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.71 us    (0.5%)
   LB compute        : 320.26 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.232552083333332
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.9713259155646805e-27,-9.37529708022254e-28,2.247568608475913e-17)
    sum a = (1.9509424603853917e-25,1.0287966995321273e-25,1.9495017163837602e-17)
    sum e = 1.236875856482575e-09
    sum de = 3.5194771375273204e-14
Info: cfl dt = 0.0015659114732468318 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0278e+04 | 11520 |      1 | 3.805e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.816346262840835 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.487670990900215, dt = 0.0015659114732468318 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (2.1%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 283.35 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.232552083333332
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.2161706995615486e-27,-8.27619605417574e-28,2.25061041993878e-17)
    sum a = (1.037086764368966e-25,3.4487328488425864e-25,1.9348922549801183e-17)
    sum e = 1.236875910715772e-09
    sum de = 3.407323907090643e-14
Info: cfl dt = 0.0015659263819972173 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9217e+04 | 11520 |      1 | 3.943e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.29714872596746 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.489236902373461, dt = 0.0015659263819972173 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.8%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.65 us    (0.5%)
   LB compute        : 310.88 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.232552083333332
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.1135417078549704e-27,-7.731846334650984e-29,2.2536288802083023e-17)
    sum a = (5.48534624693331e-25,-5.15884043108843e-25,1.9196521169307498e-17)
    sum e = 1.2368759631938386e-09
    sum de = 3.295267018504733e-14
Info: cfl dt = 0.0015659414271855172 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8265e+04 | 11520 |      1 | 4.076e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.831421491191309 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.490802828755458, dt = 0.0015659414271855172 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (1.9%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 303.34 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.232552083333332
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.904183859636915e-27,-1.5597179702433835e-27,2.2566230105158773e-17)
    sum a = (-6.348019200531747e-26,-2.4479198855288303e-25,1.9037928853302162e-17)
    sum e = 1.2368760139184189e-09
    sum de = 3.183327392429993e-14
Info: cfl dt = 0.0015659565981149199 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8825e+04 | 11520 |      1 | 3.997e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.105746819206917 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.492368770182644, dt = 0.0015659565981149199 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (1.8%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 325.65 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.232552083333332
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.488059609751366e-27,-1.734291272014539e-27,2.2595918502316758e-17)
    sum a = (5.460666748184411e-25,-7.476036638431007e-26,1.8873260592447603e-17)
    sum e = 1.2368760628914826e-09
    sum de = 3.071525571239908e-14
Info: cfl dt = 0.0015659718829651487 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0309e+04 | 11520 |      1 | 3.801e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.831998709930037 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.493934726780759, dt = 0.0015659718829651487 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (2.1%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.5%)
   LB compute        : 269.23 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.232552083333332
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1719121350278173e-27,-1.7211159284846406e-27,2.2625344566087608e-17)
    sum a = (4.457620910861904e-25,2.6888553123426854e-25,1.870263231748434e-17)
    sum e = 1.236876110115319e-09
    sum de = 2.959882006977497e-14
Info: cfl dt = 0.001565987269062569 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0206e+04 | 11520 |      1 | 3.814e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.78160525167156 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.495500698663724, dt = 0.001565987269062569 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.9%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 1.09 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.5%)
   LB compute        : 280.04 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.232552083333332
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.436562803916029e-28,-1.0143280920188993e-27,2.265449905063379e-17)
    sum a = (-9.607529845915329e-26,-1.1466640161897328e-25,1.8526158835991272e-17)
    sum e = 1.2368761555925338e-09
    sum de = 2.848416996543244e-14
Info: cfl dt = 0.0015660027431774958 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0377e+04 | 11520 |      1 | 3.792e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.865692791572469 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.497066685932786, dt = 0.0015660027431774958 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.8%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 321.84 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.232552083333332
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0928600738484262e-27,-1.5061497972073486e-27,2.2683372888606215e-17)
    sum a = (4.019561541666772e-25,2.351739877760571e-25,1.834395757454623e-17)
    sum e = 1.2368761993260509e-09
    sum de = 2.7371505436308366e-14
Info: cfl dt = 0.0015660182918410081 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0392e+04 | 11520 |      1 | 3.790e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.873028522696751 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.498632688675964, dt = 0.0013673113240360024 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.8%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 320.17 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.232552083333332
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7335978328813866e-28,-9.078851850799822e-28,2.270831212565308e-17)
    sum a = (2.33480262693332e-25,-4.125293673494208e-25,1.818045480413063e-17)
    sum e = 1.2368762358792351e-09
    sum de = 2.6402065270574574e-14
Info: cfl dt = 0.0015660319254364378 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8348e+04 | 11520 |      1 | 4.064e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.112513544158576 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 2579                                                    [SPH][rank=0]
Info: time since start : 1172.397517631 (s)                                           [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[-6.04193233e-34 -1.35655308e-19 -6.22593926e-15 ...  1.41178416e-10
 -5.73658454e-14 -5.62081888e-12]
(11520, 3)
[[-6.04193233e-34 -1.35655308e-19 -6.22593926e-15  1.46799473e-11
  -2.13544378e-14]
 [ 1.02231881e-08 -9.54670626e-39 -2.12108459e-24  1.29599649e-09
  -1.09841635e-11]
 [ 2.21038453e-05  1.36938404e-05 -1.35485141e-16  1.00467773e-08
   1.10873438e-09]
 ...
 [ 3.26509098e-05  3.24446416e-05  5.30419277e-06 -6.71636872e-17
  -2.37428339e-11]
 [ 7.70421317e-06 -2.77646270e-21 -2.75255286e-25  1.12850456e-08
   4.10114949e-10]
 [-2.31322533e-57 -2.64994763e-35  1.41178416e-10 -5.73658454e-14
  -5.62081888e-12]]
compute original rho
Info: Dumping state to _to_trash/dusty_settle/dump/0000045.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.43 us   (70.3%)
Info: dump to _to_trash/dusty_settle/dump/0000045.sham                      [Shamrock Dump][rank=0]
              - took 1.20 ms, bandwidth = 2.46 GB/s
Info: evolve_until (target_time = 4.60s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 4.5, dt = 0.0015660319254364378 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.10 us    (1.0%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 299.40 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.232552083333332
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.211766984786568e-29,-2.0083730893930863e-27,2.2736671518764004e-17)
    sum a = (-2.4981352803560726e-25,9.020290916005088e-26,1.798765900567464e-17)
    sum e = 1.2368762765639035e-09
    sum de = 2.5293359695746743e-14
Info: cfl dt = 0.001566047570920238 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5009e+04 | 11520 |      1 | 4.606e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.239020478143566 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.501566031925436, dt = 0.001566047570920238 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.5%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.3%)
   LB compute        : 372.05 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.232552083333332
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.948260114188597e-28,-1.4583024970198225e-27,2.276469008622131e-17)
    sum a = (4.652796289279022e-25,4.051938214793665e-26,1.778964143813832e-17)
    sum e = 1.2368763153063668e-09
    sum de = 2.4187510823991225e-14
Info: cfl dt = 0.0015660632610312109 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0119e+04 | 11520 |      1 | 3.825e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.74001091524801 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.503132079496356, dt = 0.0015660632610312109 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.7%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 296.03 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.232552083333332
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.797151153155356e-28,-1.429178053427415e-27,2.2792394737639944e-17)
    sum a = (-2.935258506721449e-26,1.4136866231927871e-25,1.7586343948636278e-17)
    sum e = 1.236876352319626e-09
    sum de = 2.3084396894280066e-14
Info: cfl dt = 0.0015660789772756012 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9965e+04 | 11520 |      1 | 3.844e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.664885957603365 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.504698142757388, dt = 0.0015660789772756012 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (2.1%)
   patch tree reduce : 1.55 us    (0.5%)
   gen split merge   : 1.05 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 274.82 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.232291666666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8029417461966422e-28,-1.1405340142526643e-27,2.2819777152795322e-17)
    sum a = (-2.084762344301172e-25,-4.067367235506309e-27,1.7377881468871974e-17)
    sum e = 1.236876387607835e-09
    sum de = 2.1984219001123006e-14
Info: cfl dt = 0.0015660947096306774 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0419e+04 | 11520 |      1 | 3.787e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.887166896878087 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.506264221734663, dt = 0.0015660947096306774 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (2.1%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 277.59 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.232291666666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.954050707229883e-28,-1.2513109157737848e-27,2.2846829326700985e-17)
    sum a = (6.316814439539881e-26,2.222611109580568e-25,1.7164368512014658e-17)
    sum e = 1.236876421175714e-09
    sum de = 2.0887166747842977e-14
Info: cfl dt = 0.0015661104496032972 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9957e+04 | 11520 |      1 | 3.845e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.661220274023465 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.507830316444294, dt = 0.0015661104496032972 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (2.0%)
   patch tree reduce : 1.72 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.5%)
   LB compute        : 270.22 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.232291666666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9124443592407297e-29,-7.20136539778928e-28,2.2873543432785427e-17)
    sum a = (9.393118465944559e-26,-3.357060195439819e-25,1.694592350835163e-17)
    sum e = 1.2368764530282731e-09
    sum de = 1.979342635445416e-14
Info: cfl dt = 0.00156612619045567 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8146e+04 | 11520 |      1 | 4.093e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.775062907015032 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.509396426893898, dt = 0.00156612619045567 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.7%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 317.46 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.232291666666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7197290502183355e-28,-1.702913151239386e-27,2.289991183292754e-17)
    sum a = (-1.0002235400505763e-25,3.708131092576628e-26,1.6722660050567512e-17)
    sum e = 1.2368764831708106e-09
    sum de = 1.8703183602179465e-14
Info: cfl dt = 0.0015661419273716752 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0086e+04 | 11520 |      1 | 3.829e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.72475401087197 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.510962553084354, dt = 0.0015661419273716752 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.1%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.57 us    (0.5%)
   LB compute        : 290.18 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.232291666666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.331403135652905e-28,-1.35792718249599e-27,2.292592706266558e-17)
    sum a = (-1.027954170985347e-25,-2.0328272204237112e-25,1.649469372646528e-17)
    sum e = 1.2368765116089142e-09
    sum de = 1.7616621314139376e-14
Info: cfl dt = 0.0015661576575725302 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0195e+04 | 11520 |      1 | 3.815e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.777858890103015 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.512528695011725, dt = 0.0015661576575725302 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.8%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 324.97 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.232291666666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.884706793914627e-28,-1.8637910301307787e-27,2.2951581839711873e-17)
    sum a = (-5.203504845654786e-25,1.5666142224225856e-25,1.626213922837494e-17)
    sum e = 1.2368765383484587e-09
    sum de = 1.6533920414936846e-14
Info: cfl dt = 0.0015661733803782822 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0037e+04 | 11520 |      1 | 3.835e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.700733068833795 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.514094852669298, dt = 0.0015661733803782822 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (2.1%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.5%)
   LB compute        : 275.76 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2321180555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4146158316312115e-27,-1.3367772889348373e-27,2.2976869060761646e-17)
    sum a = (1.1125676140126218e-25,2.9933270997316436e-25,1.6025111496076772e-17)
    sum e = 1.2368765633955975e-09
    sum de = 1.5455259157184296e-14
Info: cfl dt = 0.0015661890972127844 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8148e+04 | 11520 |      1 | 4.093e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.776336429960612 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.515661026049676, dt = 0.0015661890972127844 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.7%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 340.22 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2321180555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.572355334025896e-28,-7.520347399039455e-28,2.300178180239654e-17)
    sum a = (-8.685262733213764e-25,-2.7626649736754434e-25,1.5783724870231452e-17)
    sum e = 1.2368765867567628e-09
    sum de = 1.4380814701516704e-14
Info: cfl dt = 0.0015662048115519626 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9722e+04 | 11520 |      1 | 3.876e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.547074841061058 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.517227215146889, dt = 0.0015662048115519626 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.6%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 333.93 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2321180555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.9013493331102887e-27,-1.627848365075622e-27,2.302631331966101e-17)
    sum a = (3.664479099144675e-26,-2.9976333567485206e-25,1.553809365176627e-17)
    sum e = 1.2368766084386662e-09
    sum de = 1.3310761200328381e-14
Info: cfl dt = 0.001566220528816135 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0263e+04 | 11520 |      1 | 3.807e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.81213570946127 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.518793419958441, dt = 0.001566220528816135 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.9%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 294.57 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2321180555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1274712605120375e-27,-2.106668086517461e-27,2.305045704656783e-17)
    sum a = (3.055500852410102e-26,7.70969095434676e-26,1.528833208679632e-17)
    sum e = 1.236876628448285e-09
    sum de = 1.224527104763614e-14
Info: cfl dt = 0.0015662362562094902 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8573e+04 | 11520 |      1 | 4.032e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.985068828836987 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.520359640487257, dt = 0.0015662362562094902 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.9%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 295.24 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231857638888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.0969599386533254e-27,-1.6949386012081318e-27,2.3074206595749975e-17)
    sum a = (3.977130001109167e-25,3.318369759005572e-25,1.503455194913966e-17)
    sum e = 1.236876646792869e-09
    sum de = 1.1184514408449143e-14
Info: cfl dt = 0.0015662520025107355 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0205e+04 | 11520 |      1 | 3.814e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.783701012777655 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.521925876743467, dt = 0.0015662520025107355 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.8%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.5%)
   LB compute        : 308.95 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231857638888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1857809176908685e-27,-9.829499712437462e-28,2.3097555752972768e-17)
    sum a = (-2.9656034031882043e-25,2.630398393417925e-25,1.4776868997136745e-17)
    sum e = 1.2368766634799327e-09
    sum de = 1.0128658606452117e-14
Info: cfl dt = 0.0015662546825439326 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0196e+04 | 11520 |      1 | 3.815e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.779700204154484 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.5234921287459775, dt = 0.0015662546825439326 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.6%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 315.27 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231857638888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1760119998327165e-27,-6.28949293769367e-28,2.312049829503189e-17)
    sum a = (-1.3343641207514664e-25,-5.498972325899758e-25,1.451539715136281e-17)
    sum e = 1.2368766785171157e-09
    sum de = 9.077878469668875e-15
Info: cfl dt = 0.0015662418972879374 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0181e+04 | 11520 |      1 | 3.817e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.772472256996634 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.525058383428521, dt = 0.0015662418972879374 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.0%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.5%)
   LB compute        : 301.68 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.39 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231857638888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2550640610121077e-27,-2.1349257311934277e-27,2.3143028152470268e-17)
    sum a = (1.3557428492265595e-26,9.442872723748255e-26,1.4250250495567997e-17)
    sum e = 1.236876691912368e-09
    sum de = 8.032347499532977e-15
Info: cfl dt = 0.0015662291498773186 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0161e+04 | 11520 |      1 | 3.819e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.762400211278372 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.52662462532581, dt = 0.0015662291498773186 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.8%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 306.93 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2320312499999995
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1385662866424786e-27,-1.4834396655966026e-27,2.316513966827664e-17)
    sum a = (-2.2533512663532207e-25,-3.71745784891753e-26,1.3981542324794477e-17)
    sum e = 1.23687670367408e-09
    sum de = 6.99222639638241e-15
Info: cfl dt = 0.0015662164348567461 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9976e+04 | 11520 |      1 | 3.843e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.671885778600288 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.528190854475687, dt = 0.0015662164348567461 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.8%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 312.01 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.232291666666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.655871879974284e-27,-1.6661608771823005e-27,2.31868273603549e-17)
    sum a = (4.0427224087140675e-25,-4.582765871221946e-25,1.3709383395404105e-17)
    sum e = 1.2368767138108788e-09
    sum de = 5.957673844364655e-15
Info: cfl dt = 0.0015662037472825461 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0002e+04 | 11520 |      1 | 3.840e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.684323652263467 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.529757070910544, dt = 0.0015662037472825461 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (2.2%)
   patch tree reduce : 2.18 us    (0.8%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 259.70 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.232291666666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5297267277345355e-27,-2.696784788830285e-27,2.3208085918087444e-17)
    sum a = (4.850287754400869e-25,2.8597395179254697e-25,1.343388522273168e-17)
    sum e = 1.2368767223316367e-09
    sum de = 4.928845813588898e-15
Info: cfl dt = 0.0015661910828534769 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0232e+04 | 11520 |      1 | 3.811e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.796680184080087 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.531323274657827, dt = 0.0015661910828534769 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.2%)
   patch tree reduce : 1.97 us    (0.7%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.5%)
   LB compute        : 272.60 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.232291666666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.22563576744962e-28,-1.6677211152318938e-27,2.3228910206189267e-17)
    sum a = (-1.5558000391410717e-25,-3.6922409348404377e-25,1.3155158203125566e-17)
    sum e = 1.2368767292454656e-09
    sum de = 3.905896803609201e-15
Info: cfl dt = 0.0015661784380241414 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0264e+04 | 11520 |      1 | 3.807e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.812157863218514 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.53288946574068, dt = 0.0015661784380241414 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (2.2%)
   patch tree reduce : 1.97 us    (0.7%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 263.30 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.232291666666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4700909622834158e-27,-2.756593914064693e-27,2.324929526142595e-17)
    sum a = (2.641184839134113e-25,-1.0392572288557336e-26,1.2873313649420734e-17)
    sum e = 1.2368767345617235e-09
    sum de = 2.888977695207689e-15
Info: cfl dt = 0.0015661658100936389 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0252e+04 | 11520 |      1 | 3.808e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.806482023557788 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.534455644178704, dt = 0.0015661658100936389 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.8%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 305.92 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.232291666666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.197898202123517e-28,-2.4849391336521795e-27,2.3269236295725086e-17)
    sum a = (4.624184990645147e-25,-1.3246386369090017e-25,1.2588459680870581e-17)
    sum e = 1.236876738289996e-09
    sum de = 1.878238271629638e-15
Info: cfl dt = 0.0015661531972690156 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8874e+04 | 11520 |      1 | 3.990e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.131749272045077 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.536021809988798, dt = 0.0015661531972690156 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (2.0%)
   patch tree reduce : 1.91 us    (0.7%)
   gen split merge   : 1.07 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.5%)
   LB compute        : 273.21 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.232291666666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6642539195661312e-28,-2.8099887273174396e-27,2.3288728687831474e-17)
    sum a = (3.0951343660654357e-25,1.221406353156581e-25,1.2300705495660506e-17)
    sum e = 1.2368767404401049e-09
    sum de = 8.738249581091059e-16
Info: cfl dt = 0.0015661405987015134 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8215e+04 | 11520 |      1 | 4.083e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.80891389239201 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.537587963186066, dt = 0.0015661405987015134 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.7%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 319.14 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.232291666666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.353350107937722e-28,-2.415421860553636e-27,2.3307767988522442e-17)
    sum a = (1.5896502704259135e-25,-6.549386990407916e-25,1.2010159757570107e-17)
    sum e = 1.236876741022098e-09
    sum de = -1.2411721288249483e-16
Info: cfl dt = 0.0015661280144952956 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8453e+04 | 11520 |      1 | 4.049e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.925301203682913 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.539154103784767, dt = 0.0015661280144952956 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.7%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 311.58 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.232291666666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.559934199623167e-28,-4.022640411417969e-27,2.3326349918426996e-17)
    sum a = (-3.9364805991237644e-26,1.3494013483538794e-25,1.1716929104900133e-17)
    sum e = 1.2368767400462484e-09
    sum de = -1.1154463133043165e-15
Info: cfl dt = 0.0015661154456886556 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8788e+04 | 11520 |      1 | 4.002e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.089132689407437 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.540720231799263, dt = 0.0015661154456886556 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.8%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 315.03 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.232291666666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.57669827880686e-28,-3.2000482397157514e-27,2.334447036371609e-17)
    sum a = (-2.206419305821456e-26,-3.6114656774151624e-25,1.142112222303046e-17)
    sum e = 1.2368767375230494e-09
    sum de = -2.1000219128953694e-15
Info: cfl dt = 0.001566102894208861 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0312e+04 | 11520 |      1 | 3.801e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.83480703843697 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.542286347244952, dt = 0.001566102894208861 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.9%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 273.94 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.232291666666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.216109929567532e-28,-4.173116703312074e-27,2.336212538244205e-17)
    sum a = (1.95000285035997e-25,-4.259498416128887e-25,1.112284501861803e-17)
    sum e = 1.2368767334632122e-09
    sum de = -3.077707152576466e-15
Info: cfl dt = 0.0015660903628024892 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0374e+04 | 11520 |      1 | 3.793e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.865106895225237 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.543852450139161, dt = 0.0015660903628024892 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (2.1%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 991.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.5%)
   LB compute        : 262.42 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.232291666666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.834414556363546e-28,-4.883545095226866e-27,2.3379311196401066e-17)
    sum a = (2.4739481233917115e-26,-1.0315219153254169e-25,1.0822203050847477e-17)
    sum e = 1.23687672787766e-09
    sum de = -4.048366451081906e-15
Info: cfl dt = 0.0015660778549436514 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7905e+04 | 11520 |      1 | 4.128e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.657019710145514 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.545418540501963, dt = 0.0015660778549436514 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (2.0%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 283.36 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.232291666666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.043893944569634e-28,-4.7819562622200166e-27,2.3396024192686494e-17)
    sum a = (-4.0884789899151387e-25,4.704984518440083e-26,1.051930129440256e-17)
    sum e = 1.2368767207775256e-09
    sum de = -5.011867461196098e-15
Info: cfl dt = 0.0015660653747240128 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0449e+04 | 11520 |      1 | 3.783e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.90178750366059 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.546984618356906, dt = 0.0015660653747240128 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (2.1%)
   patch tree reduce : 1.85 us    (0.7%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.5%)
   LB compute        : 257.00 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.232291666666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6781227022291822e-28,-4.611543595247776e-27,2.3412260922347748e-17)
    sum a = (-3.179591785287751e-26,5.810319562293924e-25,1.0214245625877546e-17)
    sum e = 1.2368767121741477e-09
    sum de = -5.968079453188393e-15
Info: cfl dt = 0.0015660529267273004 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9968e+04 | 11520 |      1 | 3.844e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.666050822837203 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.54855068373163, dt = 0.0015660529267273004 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.8%)
   patch tree reduce : 1.91 us    (0.5%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.60 us    (0.5%)
   LB compute        : 328.56 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.232291666666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.073079158156058e-29,-3.2855146128768036e-27,2.3428018103104415e-17)
    sum a = (-1.8496032654664775e-25,1.1983911083272476e-25,9.907138062192463e-18)
    sum e = 1.2368767020790665e-09
    sum de = -6.916875169942894e-15
Info: cfl dt = 0.0015660405158958123 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0358e+04 | 11520 |      1 | 3.795e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.856991443742285 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.5501167366583575, dt = 0.0015660405158958123 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.5%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 347.07 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.232291666666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.439458100436671e-28,-3.422642201457721e-27,2.3443292609329528e-17)
    sum a = (2.5635127218296955e-25,-3.526692743387262e-26,9.598080776252657e-18)
    sum e = 1.236876690504021e-09
    sum de = -7.858128740181621e-15
Info: cfl dt = 0.0015660281473825043 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8981e+04 | 11520 |      1 | 3.975e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.183120162450699 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.551682777174253, dt = 0.0015660281473825043 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (1.9%)
   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.14 us    (0.3%)
   LB compute        : 313.00 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2321180555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.9664718416326124e-28,-3.603629815210538e-27,2.345808147587874e-17)
    sum a = (2.50132856756424e-25,3.862941379052936e-25,9.287178822523445e-18)
    sum e = 1.2368766774609425e-09
    sum de = -8.791717555986663e-15
Info: cfl dt = 0.0015660158264096577 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9954e+04 | 11520 |      1 | 3.846e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.658893758022653 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.553248805321636, dt = 0.0015660158264096577 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (1.7%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.4%)
   LB compute        : 322.68 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2321180555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.849730987286919e-28,-2.6739012974362507e-27,2.3472381904259158e-17)
    sum a = (3.404994175518989e-25,9.311396664102531e-26,8.974531586884333e-18)
    sum e = 1.2368766629619532e-09
    sum de = -9.717520631094085e-15
Info: cfl dt = 0.0015660035581268564 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0309e+04 | 11520 |      1 | 3.801e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.832774094099813 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.554814821148046, dt = 0.0015660035581268564 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (2.1%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1.10 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 272.09 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.35 us    (63.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2321180555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4021339272344655e-27,-2.7536467977487946e-27,2.3486191247404887e-17)
    sum a = (5.417111836231099e-26,-2.1575942564561846e-25,8.66024050391973e-18)
    sum e = 1.2368766470193625e-09
    sum de = -1.0635419724892349e-14
Info: cfl dt = 0.0015659913474757735 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0355e+04 | 11520 |      1 | 3.795e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.855211226630901 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.556380824706173, dt = 0.0015659913474757735 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.2%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 273.95 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2321180555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.256511709272429e-27,-3.3638732349230424e-27,2.3499507018564835e-17)
    sum a = (-1.5456134182750605e-25,-3.212599488025813e-26,8.344404420145252e-18)
    sum e = 1.236876629645664e-09
    sum de = -1.1545299648320737e-14
Info: cfl dt = 0.001565979199066546 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0376e+04 | 11520 |      1 | 3.792e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.865313652264378 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.557946816053648, dt = 0.001565979199066546 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.6%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 304.70 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 20.95 us   (6.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2321180555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.473826207124218e-28,-3.248068899686566e-27,2.351232688405975e-17)
    sum a = (1.0053438946097748e-24,1.6770166668118038e-25,8.027124582033991e-18)
    sum e = 1.236876610853526e-09
    sum de = -1.2447046930532334e-14
Info: cfl dt = 0.00156596711706891 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8208e+04 | 11520 |      1 | 4.084e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.804104734153286 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.559512795252715, dt = 0.00156596711706891 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (2.0%)
   patch tree reduce : 1.69 us    (0.6%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 268.43 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2321180555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.324347204333347e-27,-2.821603832797745e-27,2.3524648670394116e-17)
    sum a = (5.012559445949899e-26,-3.431566763101395e-25,7.70849697929807e-18)
    sum e = 1.2368765906557938e-09
    sum de = -1.334055062809337e-14
Info: cfl dt = 0.0015659551051210063 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0365e+04 | 11520 |      1 | 3.794e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.859458575570624 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.5610787623697835, dt = 0.0015659551051210063 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.2%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.5%)
   LB compute        : 271.73 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2321180555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6752881757025557e-27,-3.765894572368236e-27,2.3536470350447726e-17)
    sum a = (-1.8559100943825e-25,5.382380937247154e-25,7.388620928034483e-18)
    sum e = 1.2368765690654844e-09
    sum de = -1.42257023439876e-14
Info: cfl dt = 0.0015659431662590588 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0391e+04 | 11520 |      1 | 3.791e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.872149162339491 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.562644717474904, dt = 0.0015659431662590588 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.3%)
   patch tree reduce : 1.90 us    (0.7%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 265.49 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2321180555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2301002522186156e-27,-2.2283666543857344e-27,2.3547790055119183e-17)
    sum a = (-1.6618268826000972e-27,4.450970829574971e-25,7.067590790592048e-18)
    sum e = 1.2368765460957819e-09
    sum de = -1.5102396309914746e-14
Info: cfl dt = 0.001565931302868849 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0297e+04 | 11520 |      1 | 3.802e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.826195910601324 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.564210660641163, dt = 0.001565931302868849 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (2.0%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 273.71 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2321180555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3257948525936684e-27,-1.6096455878303674e-27,2.3558606059306677e-17)
    sum a = (2.5956466912599847e-25,-3.240028472937662e-25,6.745503395241492e-18)
    sum e = 1.2368765217600337e-09
    sum de = -1.5970528760639536e-14
Info: cfl dt = 0.0015659195166608715 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0410e+04 | 11520 |      1 | 3.788e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.881124348379734 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.565776591944032, dt = 0.0015659195166608715 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (2.0%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.5%)
   LB compute        : 271.92 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231944444444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9485031941646624e-27,-2.72798954982215e-27,2.3568916791352602e-17)
    sum a = (5.31877176556307e-25,-1.585538176366319e-25,6.422454124836189e-18)
    sum e = 1.236876496071746e-09
    sum de = -1.6829998986777514e-14
Info: cfl dt = 0.0015659078086691445 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0413e+04 | 11520 |      1 | 3.788e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.882574750545558 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.567342511460693, dt = 0.0015659078086691445 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.8%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 305.05 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231944444444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.984501259094579e-27,-2.8290583034791347e-27,2.3578720827865654e-17)
    sum a = (-4.281178790626902e-25,-7.591979661494114e-26,6.098536250814483e-18)
    sum e = 1.2368764690445817e-09
    sum de = -1.7680708286698453e-14
Info: cfl dt = 0.0015658961792733527 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0176e+04 | 11520 |      1 | 3.818e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.766421685409924 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.568908419269363, dt = 0.0015658961792733527 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.9%)
   patch tree reduce : 1.69 us    (0.6%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 282.32 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231944444444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5449216186698755e-27,-2.8703179319017118e-27,2.3588016889662127e-17)
    sum a = (5.062615349776516e-25,-1.9620756256681561e-25,5.773842725430237e-18)
    sum e = 1.2368764406923541e-09
    sum de = -1.8522560534304682e-14
Info: cfl dt = 0.0015658846282430496 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0229e+04 | 11520 |      1 | 3.811e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.792344716958754 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.570474315448636, dt = 0.0015658846282430496 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.90 us    (2.4%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 265.86 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231944444444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.088517129067462e-27,-3.2699122323808715e-27,2.3596803843016894e-17)
    sum a = (-7.292639323690485e-25,-3.3690740284216865e-26,5.448466785693931e-18)
    sum e = 1.236876411029028e-09
    sum de = -1.935546201310407e-14
Info: cfl dt = 0.0015658731548023022 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0199e+04 | 11520 |      1 | 3.815e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.777519726536442 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.572040200076879, dt = 0.0015658731548023022 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (2.2%)
   patch tree reduce : 1.71 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.5%)
   LB compute        : 262.81 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231944444444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.96798025988695e-27,-3.2109699060629043e-27,2.3605080700351268e-17)
    sum a = (-2.5762303955317133e-26,-3.337532949450243e-25,5.122498140291988e-18)
    sum e = 1.2368763800687087e-09
    sum de = -2.0179321659761967e-14
Info: cfl dt = 0.0015658617577118182 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8409e+04 | 11520 |      1 | 4.055e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.901388796253567 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.573606073231681, dt = 0.0015658617577118182 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.9%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 1.44 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 292.84 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.38 us    (62.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231944444444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5060890272133326e-27,-3.962657926400273e-27,2.361284661153939e-17)
    sum a = (-2.258156799545968e-25,-1.3464039577008276e-25,4.796028680908534e-18)
    sum e = 1.2368763478256433e-09
    sum de = -2.09940504874821e-14
Info: cfl dt = 0.0015658504353659069 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0285e+04 | 11520 |      1 | 3.804e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.819284349717933 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.575171934989393, dt = 0.0015658504353659069 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.8%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 280.28 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231944444444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9873965556152214e-27,-4.013452342903698e-27,2.362010087206582e-17)
    sum a = (8.209383193696491e-26,-1.4895922043054986e-25,4.469146788092262e-18)
    sum e = 1.2368763143142172e-09
    sum de = -2.1799562391397004e-14
Info: cfl dt = 0.0015658391858999067 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7318e+04 | 11520 |      1 | 4.217e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.367351929393891 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.576737785424759, dt = 0.0015658391858999067 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (1.9%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 311.41 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.49 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (71.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231684027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.360466809251296e-27,-4.2703715417367194e-27,2.362684291315306e-17)
    sum a = (4.156512303268736e-25,1.0539928104352255e-26,4.141940389713409e-18)
    sum e = 1.2368762795489454e-09
    sum de = -2.25957732302739e-14
Info: cfl dt = 0.0015658280073052974 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0234e+04 | 11520 |      1 | 3.810e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.794058911962797 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.578303624610658, dt = 0.0015658280073052974 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (2.0%)
   patch tree reduce : 1.97 us    (0.7%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.5%)
   LB compute        : 272.37 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (61.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231684027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2508426562191764e-27,-4.108453504145598e-27,2.3633072303208752e-17)
    sum a = (-2.2563642593867687e-25,-2.2047567854997227e-25,3.814498392796644e-18)
    sum e = 1.2368762435444753e-09
    sum de = -2.33826019430632e-14
Info: cfl dt = 0.0015658168975481509 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0369e+04 | 11520 |      1 | 3.793e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.860345640686225 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.579869452617964, dt = 0.0015658168975481509 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (2.1%)
   patch tree reduce : 1.97 us    (0.7%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 272.28 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231684027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.435358235631772e-27,-4.62333206051137e-27,2.363878875028601e-17)
    sum a = (-1.8806173306967254e-25,8.89793358096032e-26,3.4869071525317796e-18)
    sum e = 1.2368762063155753e-09
    sum de = -2.4159969160190315e-14
Info: cfl dt = 0.0015658058546859943 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6712e+04 | 11520 |      1 | 4.313e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.070455505804212 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.581435269515512, dt = 0.0015658058546859943 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (2.3%)
   patch tree reduce : 1.63 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 267.15 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231510416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1607563389033603e-27,-4.249568367742143e-27,2.3643992095958953e-17)
    sum a = (-4.758160898365887e-25,-2.348277882888307e-25,3.1592514066854224e-18)
    sum e = 1.2368761678771399e-09
    sum de = -2.492779838960013e-14
Info: cfl dt = 0.0015657948769805343 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0055e+04 | 11520 |      1 | 3.833e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.706463162734225 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.583001075370198, dt = 0.0015657948769805343 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (2.1%)
   patch tree reduce : 1.95 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (0.5%)
   LB compute        : 275.02 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231510416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1691383784952071e-27,-4.866902556031205e-27,2.3648682312975423e-17)
    sum a = (1.5127027970156403e-25,-1.5403710184284272e-25,2.8316165987538317e-18)
    sum e = 1.236876128244178e-09
    sum de = -2.5686015435494304e-14
Info: cfl dt = 0.001565783963000678 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8817e+04 | 11520 |      1 | 3.998e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.100363230050068 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.584566870247179, dt = 0.001565783963000678 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.9%)
   patch tree reduce : 1.71 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 272.81 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231510416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9069576161695253e-27,-5.0515307252330726e-27,2.3652859508374685e-17)
    sum a = (-4.155569226047649e-25,1.2220408499634156e-25,2.504084824312596e-18)
    sum e = 1.2368760874318128e-09
    sum de = -2.643454885630059e-14
Info: cfl dt = 0.001565773111713473 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0128e+04 | 11520 |      1 | 3.824e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.741769720763745 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.5861326542101795, dt = 0.001565773111713473 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (1.7%)
   patch tree reduce : 1.59 us    (0.4%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 339.55 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231510416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.127106640547941e-28,-4.664591688933947e-27,2.365652391507116e-17)
    sum a = (-7.781253872888104e-26,3.310166374060377e-26,2.176741351372452e-18)
    sum e = 1.2368760454552802e-09
    sum de = -2.717332896445992e-14
Info: cfl dt = 0.0015657623225590412 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0086e+04 | 11520 |      1 | 3.829e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.721111096429919 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.587698427321893, dt = 0.0015657623225590412 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (2.1%)
   patch tree reduce : 1.76 us    (0.6%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.5%)
   LB compute        : 269.70 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (62.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231510416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.472378558863897e-28,-4.6586974563021504e-27,2.3659675901841316e-17)
    sum a = (-2.453339112354418e-25,1.3923373658808527e-25,1.849666662855956e-18)
    sum e = 1.2368760023299175e-09
    sum de = -2.7902289032831534e-14
Info: cfl dt = 0.0015657515955072746 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6657e+04 | 11520 |      1 | 4.322e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.043083906054807 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.589264189644452, dt = 0.0015657515955072746 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (2.1%)
   patch tree reduce : 1.82 us    (0.7%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 259.13 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231510416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.410272886850247e-28,-4.365892782328484e-27,2.3662315959762115e-17)
    sum a = (-4.703569902608452e-25,1.6032399438378708e-25,1.5229403097887626e-18)
    sum e = 1.2368759580711676e-09
    sum de = -2.8621364430593985e-14
Info: cfl dt = 0.0015657409310946065 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0212e+04 | 11520 |      1 | 3.813e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.782602183492491 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.590829941239959, dt = 0.0015657409310946065 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.8%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 1.44 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 298.98 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231510416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.507354365491605e-28,-4.091810964949937e-27,2.366444470358953e-17)
    sum a = (2.158291162785003e-25,-3.838183868401557e-25,1.196643291157765e-18)
    sum e = 1.236875912694572e-09
    sum de = -2.933049341311896e-14
Info: cfl dt = 0.0015657303304385836 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0107e+04 | 11520 |      1 | 3.826e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.731413487691619 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.592395682171054, dt = 0.0015657303304385836 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (2.1%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 285.64 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231510416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.8000464496759996e-28,-5.120007839631887e-27,2.366606287602254e-17)
    sum a = (1.1679352615991874e-25,-1.4843775420241914e-25,8.708532950598792e-19)
    sum e = 1.236875866215766e-09
    sum de = -3.002961597520159e-14
Info: cfl dt = 0.0015657197952305938 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9141e+04 | 11520 |      1 | 3.953e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.258252263720825 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.593961412501492, dt = 0.0015657197952305938 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.9%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 295.17 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231510416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.048236889350598e-28,-5.1865779964145326e-27,2.3667171338614877e-17)
    sum a = (-2.355179335861008e-25,-1.7244375019324414e-25,5.456482602206868e-19)
    sum e = 1.2368758186504759e-09
    sum de = -3.071867513888042e-14
Info: cfl dt = 0.001565709327706501 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0150e+04 | 11520 |      1 | 3.821e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.75186810306735 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.595527132296723, dt = 0.001565709327706501 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.8%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 311.35 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.34 us    (62.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231510416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2897967876637516e-28,-5.438816481098774e-27,2.3667771075208976e-17)
    sum a = (-2.490337557303772e-25,2.768153544414346e-25,2.2110534317197446e-19)
    sum e = 1.236875770014516e-09
    sum de = -3.139761568205961e-14
Info: cfl dt = 0.0015656989305953134 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0218e+04 | 11520 |      1 | 3.812e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.785193224305594 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.597092841624429, dt = 0.0015656989305953134 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (2.0%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 296.99 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231510416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.505906717231284e-28,-4.6654584878503876e-27,2.36678631896684e-17)
    sum a = (-3.960404249217528e-26,-2.475142572298567e-25,-1.0270000110692105e-19)
    sum e = 1.2368757203237832e-09
    sum de = -3.206638507047968e-14
Info: cfl dt = 0.0015656886070486526 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0087e+04 | 11520 |      1 | 3.829e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.721219029465594 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.598658540555024, dt = 0.0013414594449754347 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.6%)
   patch tree reduce : 1.91 us    (0.5%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 335.31 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231510416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.299322625545839e-28,-5.418013307104198e-27,2.3667471930956342e-17)
    sum a = (-1.819168221912412e-26,-4.804683729809092e-25,-3.791500726884759e-19)
    sum e = 1.236875676783499e-09
    sum de = -3.2629888453819717e-14
Info: cfl dt = 0.001565679832837712 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0159e+04 | 11520 |      1 | 3.820e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.642709485056525 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 2643                                                    [SPH][rank=0]
Info: time since start : 1200.332622335 (s)                                           [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[-8.44376772e-35 -6.19559748e-20 -4.55722482e-15 ...  1.63940791e-10
 -3.75524875e-14 -4.74832999e-12]
(11520, 3)
[[-8.44376772e-35 -6.19559748e-20 -4.55722482e-15  1.37081253e-11
  -2.03241283e-14]
 [-4.14442643e-14 -1.19880055e-40 -3.70178375e-25 -2.04657652e-11
  -8.32859626e-12]
 [ 2.17804498e-05  1.28071745e-05 -1.05924322e-17  1.11747541e-08
   1.54109142e-09]
 ...
 [ 3.24740937e-05  3.16222945e-05  3.64168106e-06 -1.90803812e-17
  -1.43858071e-11]
 [ 7.40322738e-06 -8.36021188e-24 -2.70969917e-26  1.12461113e-08
   4.77952333e-10]
 [-2.89634848e-60 -1.83242759e-36  1.63940791e-10 -3.75524875e-14
  -4.74832999e-12]]
compute original rho
Info: Dumping state to _to_trash/dusty_settle/dump/0000046.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.58 us   (71.4%)
Info: dump to _to_trash/dusty_settle/dump/0000046.sham                      [Shamrock Dump][rank=0]
              - took 1.23 ms, bandwidth = 2.40 GB/s
Info: evolve_until (target_time = 4.70s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 4.6, dt = 0.001565679832837712 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.18 us    (0.9%)
   patch tree reduce : 1.42 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        : 339.57 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231249999999999
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.299322625545839e-28,-6.310642831254823e-27,2.3666692880039308e-17)
    sum a = (1.5764298533523602e-26,-3.469043681052625e-25,-7.017306686316398e-19)
    sum e = 1.2368756253185543e-09
    sum de = -3.3281044964327646e-14
Info: cfl dt = 0.0015656696454350218 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9989e+04 | 11520 |      1 | 3.841e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.67282808382274 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.601565679832837, dt = 0.0015656696454350218 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.7%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 312.78 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231249999999999
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.18837236424143e-28,-6.752016839506424e-27,2.3665341672671034e-17)
    sum a = (-3.4904744174627046e-25,1.271155410166778e-25,-1.0230215737890196e-18)
    sum e = 1.236875572701673e-09
    sum de = -3.392047406525997e-14
Info: cfl dt = 0.0015656595520106907 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0360e+04 | 11520 |      1 | 3.794e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.854498374187624 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.603131349478272, dt = 0.0015656595520106907 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (1.6%)
   patch tree reduce : 1.59 us    (0.4%)
   gen split merge   : 981.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.68 us    (0.4%)
   LB compute        : 374.08 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231076388888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.242642926609378e-27,-6.184436909021059e-27,2.366348845144999e-17)
    sum a = (-4.32882846066148e-25,-2.5086738215821585e-25,-1.3432956968356978e-18)
    sum e = 1.236875519093185e-09
    sum de = -3.454956711065213e-14
Info: cfl dt = 0.001565649546434639 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0348e+04 | 11520 |      1 | 3.796e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.84856049208635 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.604697009030283, dt = 0.001565649546434639 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    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   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 332.31 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231076388888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.991557190414137e-27,-6.889837867220494e-27,2.3661134601034754e-17)
    sum a = (4.198496575585457e-26,-1.2658939407439831e-25,-1.6624813361928707e-18)
    sum e = 1.2368754645081916e-09
    sum de = -3.516826737261744e-14
Info: cfl dt = 0.0015656396324691792 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7566e+04 | 11520 |      1 | 4.179e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.487016703733916 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.606262658576718, dt = 0.0015656396324691792 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.8%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 313.69 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231076388888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5338873625334509e-27,-6.971663684932496e-27,2.3658281887973995e-17)
    sum a = (4.9329873054206434e-26,-4.854169279948691e-25,-1.9805074446642954e-18)
    sum e = 1.2368754089630178e-09
    sum de = -3.5776536258732587e-14
Info: cfl dt = 0.0015656298135970994 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0031e+04 | 11520 |      1 | 3.836e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.692874203366376 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.607828298209187, dt = 0.0015656298135970994 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (2.0%)
   patch tree reduce : 1.93 us    (0.7%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.5%)
   LB compute        : 275.90 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231076388888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4645434492181954e-27,-8.018583416209565e-27,2.3654932189343647e-17)
    sum a = (-8.340304502035694e-26,-9.30527706375246e-26,-2.297306669512455e-18)
    sum e = 1.2368753524740343e-09
    sum de = -3.6374336724173045e-14
Info: cfl dt = 0.0015656200929395534 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9837e+04 | 11520 |      1 | 3.861e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.597860549703034 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.609393928022784, dt = 0.0015656200929395534 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.77 us    (1.9%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 337.15 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231076388888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.698925876223759e-27,-7.848864188370478e-27,2.3651087484648934e-17)
    sum a = (-2.0708727584641262e-25,-2.7461940606652376e-25,-2.6128131745943847e-18)
    sum e = 1.2368752950576673e-09
    sum de = -3.6961635143934e-14
Info: cfl dt = 0.0015656104731448758 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9401e+04 | 11520 |      1 | 3.918e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.384473172425912 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.610959548115724, dt = 0.0015656104731448758 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.9%)
   patch tree reduce : 19.41 us   (6.2%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 273.95 us  (87.6%)
   LB move op cnt    : 0
   LB apply          : 4.50 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231076388888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1108287213163762e-27,-8.43915425046659e-27,2.364674985534241e-17)
    sum a = (-2.876805054992354e-25,-3.6873625905387096e-27,-2.9269592992387858e-18)
    sum e = 1.236875236730395e-09
    sum de = -3.7538399080000285e-14
Info: cfl dt = 0.001565600956280294 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9968e+04 | 11520 |      1 | 3.844e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.661849107060203 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.612525158588869, dt = 0.001565600956280294 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.7%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 333.39 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231076388888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.60039674932208e-27,-8.244644573617298e-27,2.3641921489789698e-17)
    sum a = (-2.7737565326102185e-27,1.5279983306951528e-25,-3.239680074095541e-18)
    sum e = 1.2368751775087409e-09
    sum de = -3.8104599388096955e-14
Info: cfl dt = 0.001565591543744341 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0132e+04 | 11520 |      1 | 3.823e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.74220767733669 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.6140907595451495, dt = 0.001565591543744341 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (2.0%)
   patch tree reduce : 1.90 us    (0.7%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.5%)
   LB compute        : 268.47 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231076388888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.41039442683828e-27,-7.887003340693868e-27,2.3636604676152703e-17)
    sum a = (-4.046876109121651e-26,1.1247617411691093e-25,-3.550912376791919e-18)
    sum e = 1.2368751174092734e-09
    sum de = -3.866020813761566e-14
Info: cfl dt = 0.0015655822362010477 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9835e+04 | 11520 |      1 | 3.861e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.596782432589887 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.6156563510888935, dt = 0.0015655822362010477 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 23.65 us   (7.4%)
   patch tree reduce : 1.80 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.5%)
   LB compute        : 282.80 us  (88.2%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231076388888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4686433140230944e-27,-7.717804192204646e-27,2.363080179944876e-17)
    sum a = (1.4021616647997917e-25,-1.104686678264343e-25,-3.860592294039142e-18)
    sum e = 1.2368750564486037e-09
    sum de = -3.9205200697283176e-14
Info: cfl dt = 0.0015655730335315452 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0231e+04 | 11520 |      1 | 3.811e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.790196296841938 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.617221933325094, dt = 0.0015655730335315452 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.7%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 308.05 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (63.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231076388888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1357925301098683e-27,-8.073365107728617e-27,2.3624515345517776e-17)
    sum a = (-1.7337885286430036e-25,-5.078274939000934e-25,-4.168658820905141e-18)
    sum e = 1.2368749946433763e-09
    sum de = -3.973955372692207e-14
Info: cfl dt = 0.0015655639348090846 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0226e+04 | 11520 |      1 | 3.811e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.787619206436476 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.6187875063586254, dt = 0.0015655639348090846 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.7%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 326.71 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231076388888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.6156524102514362e-27,-9.173332932691858e-27,2.3617747893394414e-17)
    sum a = (1.3277799161821828e-25,-2.6075790451437074e-25,-4.475051849223305e-18)
    sum e = 1.2368749320102726e-09
    sum de = -4.026324689911916e-14
Info: cfl dt = 0.0015655549382983512 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0087e+04 | 11520 |      1 | 3.829e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.719948408875082 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.620353070293435, dt = 0.0015655549382983512 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.8%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 296.27 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231076388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.195428295560988e-27,-9.380151154154607e-27,2.3610502114877467e-17)
    sum a = (-2.6179442265865055e-25,4.889616154837617e-25,-4.77971165690697e-18)
    sum e = 1.236874868566004e-09
    sum de = -4.077626162467983e-14
Info: cfl dt = 0.0015655460414793257 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8187e+04 | 11520 |      1 | 4.087e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.789952351154804 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.621918625231733, dt = 0.0015655460414793257 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.8%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 310.67 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231076388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.936021289767916e-27,-8.037132913021396e-27,2.3602780775375842e-17)
    sum a = (1.121100382546064e-25,3.6302284067604376e-25,-5.082578772419696e-18)
    sum e = 1.2368748043273058e-09
    sum de = -4.1278581684507777e-14
Info: cfl dt = 0.001565537241095713 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0113e+04 | 11520 |      1 | 3.826e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.732100597002589 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.623484171273212, dt = 0.001565537241095713 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (2.0%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 300.19 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231076388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4478401400285178e-27,-7.549298482848575e-27,2.3594586732812948e-17)
    sum a = (5.340056879755188e-25,-3.663646972184892e-25,-5.383596484033307e-18)
    sum e = 1.2368747393109392e-09
    sum de = -4.177019289846599e-14
Info: cfl dt = 0.0015655285332268007 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0219e+04 | 11520 |      1 | 3.812e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.783907276705575 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.625049708514307, dt = 0.0015655285332268007 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.1%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 288.78 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231076388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2953443007289721e-27,-8.737679797288764e-27,2.3585922931681813e-17)
    sum a = (-9.035165185411211e-27,1.3887314823884596e-25,-5.682708961130607e-18)
    sum e = 1.2368746735336858e-09
    sum de = -4.2251083624960686e-14
Info: cfl dt = 0.0015655199133810791 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8912e+04 | 11520 |      1 | 3.984e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.144569339084098 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.626615237047535, dt = 0.0015655199133810791 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.6%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.47 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 319.80 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231076388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.726663441549861e-27,-8.093821562156617e-27,2.3576792403110986e-17)
    sum a = (2.412648104021026e-25,-4.010678586371088e-26,-5.97986104568225e-18)
    sum e = 1.2368746070123427e-09
    sum de = -4.272124415914134e-14
Info: cfl dt = 0.0015655113766093007 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8752e+04 | 11520 |      1 | 4.007e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.066306224018696 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.628180756960916, dt = 0.0015655113766093007 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (1.9%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 312.75 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231076388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1663646219625969e-27,-8.30497377820157e-27,2.3567198263807727e-17)
    sum a = (4.156924899552962e-25,7.228682565640908e-25,-6.274998814004993e-18)
    sum e = 1.2368745397637194e-09
    sum de = -4.3180666720837636e-14
Info: cfl dt = 0.0015655029176339865 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9490e+04 | 11520 |      1 | 3.906e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.427085092083244 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.629746268337525, dt = 0.0015655029176339865 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.6%)
   patch tree reduce : 2.18 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 325.47 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231076388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.564277144404131e-28,-6.584551288850083e-27,2.3557143714144806e-17)
    sum a = (2.110603353598102e-25,6.108240083472423e-25,-6.568069742306287e-18)
    sum e = 1.2368744718046376e-09
    sum de = -4.362934588343541e-14
Info: cfl dt = 0.0015654945309919652 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0328e+04 | 11520 |      1 | 3.798e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.837072692668048 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.631311771255159, dt = 0.0015654945309919652 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.85 us    (2.1%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 1.50 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.4%)
   LB compute        : 302.79 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231076388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9277607901641019e-28,-5.7014565527803046e-27,2.3546632035185647e-17)
    sum a = (-1.4939001949202089e-25,-4.2129634495008527e-26,-6.8590220568546656e-18)
    sum e = 1.236874403151924e-09
    sum de = -4.4067278808971733e-14
Info: cfl dt = 0.0015654862111859006 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0259e+04 | 11520 |      1 | 3.807e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.802993128417219 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.63287726578615, dt = 0.0015654862111859006 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.8%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 311.25 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231076388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.0869479408191085e-28,-6.269209843048958e-27,2.3535666588564368e-17)
    sum a = (-5.06272630003782e-25,2.1715176474509714e-25,-7.147803799343324e-18)
    sum e = 1.2368743338224098e-09
    sum de = -4.449446365258387e-14
Info: cfl dt = 0.0015654779528407286 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8665e+04 | 11520 |      1 | 4.019e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.023224459453077 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.634442751997336, dt = 0.0015654779528407286 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (2.1%)
   patch tree reduce : 1.87 us    (0.7%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.5%)
   LB compute        : 265.04 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231076388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7807516939357605e-27,-5.744623138819051e-27,2.3524250817424705e-17)
    sum a = (3.2838538261529036e-25,-7.187167231537981e-26,-7.4343665886368e-18)
    sum e = 1.2368742638329244e-09
    sum de = -4.491090151942552e-14
Info: cfl dt = 0.001565469750861221 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8658e+04 | 11520 |      1 | 4.020e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.020003362745147 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.6360082299501775, dt = 0.001565469750861221 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (2.0%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 280.59 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231076388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.102264371742481e-28,-6.1069450858912605e-27,2.351238823754952e-17)
    sum a = (1.1611048861376347e-25,-2.0259673737989995e-25,-7.718663201999842e-18)
    sum e = 1.2368741932002982e-09
    sum de = -4.531659567232921e-14
Info: cfl dt = 0.0015654616005841217 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0050e+04 | 11520 |      1 | 3.834e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.70066421533583 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.637573699701039, dt = 0.0015654616005841217 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (1.8%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 315.95 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231076388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.8803638491336635e-28,-6.505325867887403e-27,2.3500082437821947e-17)
    sum a = (7.227785428762392e-26,1.8460511235069034e-25,-8.000644431729635e-18)
    sum e = 1.23687412194135e-09
    sum de = -4.571155050646506e-14
Info: cfl dt = 0.0015654534979226526 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0308e+04 | 11520 |      1 | 3.801e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.826892304809988 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.639139161301623, dt = 0.0015654534979226526 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (1.9%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.60 us    (0.5%)
   LB compute        : 307.74 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231076388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.2007934986441595e-28,-5.8912855154808164e-27,2.3487337085616894e-17)
    sum a = (-1.624866576803066e-25,4.585106228296335e-27,-8.280264778612657e-18)
    sum e = 1.2368740500728942e-09
    sum de = -4.609577318382037e-14
Info: cfl dt = 0.0015654454394985616 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8255e+04 | 11520 |      1 | 4.077e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.822263927906429 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.640704614799546, dt = 0.0015654454394985616 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (1.8%)
   patch tree reduce : 1.89 us    (0.5%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 326.52 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231076388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.50011612419e-28,-6.0582309867872936e-27,2.3474155916534656e-17)
    sum a = (-2.4526560748082626e-25,-4.025672474027679e-25,-8.557479921919594e-18)
    sum e = 1.2368739776117282e-09
    sum de = -4.6469272846740893e-14
Info: cfl dt = 0.0015654374227578216 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0364e+04 | 11520 |      1 | 3.794e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.853918076847881 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.642270060239045, dt = 0.0015654374227578216 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.9%)
   patch tree reduce : 1.74 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.5%)
   LB compute        : 277.27 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231076388888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4049076837670757e-27,-6.977211197997716e-27,2.3460542734614506e-17)
    sum a = (-1.5292898610806494e-25,-6.768538026853785e-26,-8.832245030125756e-18)
    sum e = 1.236873904574636e-09
    sum de = -4.683206025849838e-14
Info: cfl dt = 0.0015654294460665295 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0376e+04 | 11520 |      1 | 3.792e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.860003475826613 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.643835497661803, dt = 0.0015654294460665295 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (2.0%)
   patch tree reduce : 1.52 us    (0.5%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 273.30 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231076388888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5713330757236888e-27,-6.835922974617884e-27,2.3446501414378946e-17)
    sum a = (2.1207379665291263e-25,1.91199025067838e-25,-9.104517105842567e-18)
    sum e = 1.2368738309783824e-09
    sum de = -4.718414860859851e-14
Info: cfl dt = 0.0015654215087843775 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0501e+04 | 11520 |      1 | 3.777e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.921146181222838 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.645400927107869, dt = 0.0015654215087843775 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (2.1%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.5%)
   LB compute        : 263.53 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231076388888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.26434681891813e-28,-6.3421943118132645e-27,2.343203589616826e-17)
    sum a = (2.856542763521636e-25,-1.087759829024089e-25,-9.374254693066398e-18)
    sum e = 1.2368737568397107e-09
    sum de = -4.752555248736385e-14
Info: cfl dt = 0.0015654136113131096 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8358e+04 | 11520 |      1 | 4.062e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.872741650863802 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.646966348616654, dt = 0.0015654136113131096 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (1.9%)
   patch tree reduce : 1.71 us    (0.6%)
   gen split merge   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.5%)
   LB compute        : 290.60 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231076388888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.396404104187196e-28,-6.73745461771022e-27,2.3417150183719017e-17)
    sum a = (4.0352679380326776e-25,1.3826838263484527e-25,-9.641417989670796e-18)
    sum e = 1.2368736821753369e-09
    sum de = -4.785628892727943e-14
Info: cfl dt = 0.0015654057551184677 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0271e+04 | 11520 |      1 | 3.806e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.808248950789814 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.648531762227967, dt = 0.0015654057551184677 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (2.1%)
   patch tree reduce : 1.65 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 266.17 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231076388888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6211999233166567e-28,-6.339247195497366e-27,2.3401848342008164e-17)
    sum a = (2.6602856200568e-25,-6.813698250400344e-26,-9.905967267368736e-18)
    sum e = 1.2368736070019505e-09
    sum de = -4.8176376860486224e-14
Info: cfl dt = 0.001565397942725084 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0437e+04 | 11520 |      1 | 3.785e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.88955472852444 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.650097167983086, dt = 0.001565397942725084 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (2.0%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 271.89 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231076388888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.991314110438072e-28,-6.591659039964896e-27,2.3386134497734285e-17)
    sum a = (-1.9943378813380786e-25,-2.277873007699328e-25,-1.0167862677449865e-17)
    sum e = 1.2368735313362086e-09
    sum de = -4.848583644515117e-14
Info: cfl dt = 0.0015653901776840299 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7308e+04 | 11520 |      1 | 4.218e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.358920962075084 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.651662565925811, dt = 0.0015653901776840299 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.3%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 1.10 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 274.97 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (62.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231076388888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.026289917065781e-28,-7.081920507103753e-27,2.337001284009702e-17)
    sum a = (-2.202591521806454e-25,9.079605965857125e-26,-1.0427069542710921e-17)
    sum e = 1.236873455194737e-09
    sum de = -4.8784691092907073e-14
Info: cfl dt = 0.0015653824645138737 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0446e+04 | 11520 |      1 | 3.784e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.893590163295544 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.653227956103495, dt = 0.0015653824645138737 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.8%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 314.84 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231076388888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.438010452176349e-28,-6.692381074055305e-27,2.335348760832971e-17)
    sum a = (1.5423126480012543e-25,1.927863072436242e-25,-1.068354878990378e-17)
    sum e = 1.236873378594118e-09
    sum de = -4.907296468321286e-14
Info: cfl dt = 0.0015653748086166572 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0298e+04 | 11520 |      1 | 3.802e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.82120231175922 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.654793338568009, dt = 0.0015653748086166572 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.7%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 326.77 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231076388888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.795703504895036e-29,-6.299027725774518e-27,2.3336563106149315e-17)
    sum a = (-2.6062909819538766e-25,4.247123994797781e-25,-1.0937268716726612e-17)
    sum e = 1.2368733015509e-09
    sum de = -4.935068346134841e-14
Info: cfl dt = 0.0015653672161705955 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9958e+04 | 11520 |      1 | 3.845e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.654777039528991 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.656358713376625, dt = 0.0015653672161705955 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.8%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.5%)
   LB compute        : 304.25 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231076388888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.615409330275372e-28,-5.4620466920593845e-27,2.3319243680901192e-17)
    sum a = (-2.093804790597481e-26,3.1932915421620963e-25,-1.1188192714932662e-17)
    sum e = 1.2368732240815846e-09
    sum de = -4.961787582290221e-14
Info: cfl dt = 0.0015653596940029147 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9834e+04 | 11520 |      1 | 3.861e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.594219776635844 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.657924080592796, dt = 0.0015653596940029147 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (2.1%)
   patch tree reduce : 1.75 us    (0.6%)
   gen split merge   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.61 us    (0.5%)
   LB compute        : 273.24 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (60.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231076388888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.020499324024495e-28,-5.051704085016361e-27,2.330153374084241e-17)
    sum a = (1.1066491110111646e-25,1.3106519695933148e-26,-1.1436289576235584e-17)
    sum e = 1.2368731462026283e-09
    sum de = -4.987457160845554e-14
Info: cfl dt = 0.0015653522494455808 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8983e+04 | 11520 |      1 | 3.975e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.177942256362472 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.659489440286799, dt = 0.0015653522494455808 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.7%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 312.63 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (61.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231076388888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.274480356740379e-28,-5.265630057593924e-27,2.3283437738856987e-17)
    sum a = (-5.273902786452434e-25,-1.5018617429677166e-25,-1.1681525089984984e-17)
    sum e = 1.236873067930437e-09
    sum de = -5.0120802380958885e-14
Info: cfl dt = 0.0015653448901780328 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9601e+04 | 11520 |      1 | 3.892e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.480022384366324 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.661054792536245, dt = 0.0015653448901780328 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (1.9%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 313.03 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231076388888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5505299017291121e-27,-5.625004888350235e-27,2.3264960183214636e-17)
    sum a = (3.393899149388548e-26,-3.572569809637719e-25,-1.1923871732908166e-17)
    sum e = 1.236872989281371e-09
    sum de = -5.035660201826969e-14
Info: cfl dt = 0.0015653376240608143 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0402e+04 | 11520 |      1 | 3.789e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.871778083338372 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.662620137426423, dt = 0.0015653376240608143 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (1.9%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 297.93 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (73.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231076388888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0609618737234085e-27,-6.3484352640116376e-27,2.324610562011687e-17)
    sum a = (-8.14173820625746e-26,-2.6771777973403964e-26,-1.2163297767492188e-17)
    sum e = 1.2368729102717266e-09
    sum de = -5.0582005127762154e-14
Info: cfl dt = 0.0015653304589648186 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0350e+04 | 11520 |      1 | 3.796e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.84614310741435 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.664185475050483, dt = 0.0015653304589648186 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (2.0%)
   patch tree reduce : 1.80 us    (0.6%)
   gen split merge   : 1.38 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 19.09 us   (6.0%)
   LB compute        : 282.23 us  (88.1%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231076388888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.2814755180659209e-27,-6.115959794622244e-27,2.3226878648402794e-17)
    sum a = (1.678576904861397e-25,1.753820251601948e-26,-1.2399775224543202e-17)
    sum e = 1.236872830917751e-09
    sum de = -5.0797049546645926e-14
Info: cfl dt = 0.0015653234026002838 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0370e+04 | 11520 |      1 | 3.793e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.855939715252951 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.665750805509448, dt = 0.0015653234026002838 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (2.1%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.5%)
   LB compute        : 265.04 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231076388888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.446088641798116e-28,-6.083021435797498e-27,2.3207283907350786e-17)
    sum a = (1.0750837616700603e-25,-4.602886007670367e-25,-1.2633276900395129e-17)
    sum e = 1.2368727512356262e-09
    sum de = -5.100177318918432e-14
Info: cfl dt = 0.0015653164623501998 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7767e+04 | 11520 |      1 | 4.149e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.582426528381319 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.667316128912048, dt = 0.0015653164623501998 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.7%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 309.33 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (61.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231336805555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.948260114188597e-28,-7.15663857370094e-27,2.3187326078228362e-17)
    sum a = (-6.20274023494062e-25,1.1634331080271946e-25,-1.2863776001409499e-17)
    sum e = 1.2368726712414748e-09
    sum de = -5.1196216691251193e-14
Info: cfl dt = 0.001565309645112478 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0357e+04 | 11520 |      1 | 3.795e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.849623331973532 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.668881445374398, dt = 0.001565309645112478 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (2.0%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 279.99 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231336805555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2398084000827514e-27,-6.525955682098692e-27,2.3167009883568908e-17)
    sum a = (3.127651460616792e-25,-2.8142533779863276e-25,-1.3091248052460632e-17)
    sum e = 1.236872590951354e-09
    sum de = -5.138042220645595e-14
Info: cfl dt = 0.0015653029571548005 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6583e+04 | 11520 |      1 | 4.334e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.003334698801641 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.67044675501951, dt = 0.0015653029571548005 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.8%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 286.56 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231336805555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.016581769201645e-27,-7.258574126274366e-27,2.314634008214424e-17)
    sum a = (1.9473071057298395e-25,-1.2483620658600535e-25,-1.3315668219650096e-17)
    sum e = 1.2368725103812518e-09
    sum de = -5.155443304292513e-14
Info: cfl dt = 0.0015652964039859012 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0299e+04 | 11520 |      1 | 3.802e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.820837176297362 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.672012057976665, dt = 0.0015652964039859012 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.8%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 305.98 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231336805555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.030025161906583e-28,-7.357042483182028e-27,2.3125321471828513e-17)
    sum a = (-2.4762902140639344e-25,2.8326867237433554e-25,-1.3537013309690049e-17)
    sum e = 1.2368724295470865e-09
    sum de = -5.171829471787709e-14
Info: cfl dt = 0.001565289990246581 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8867e+04 | 11520 |      1 | 3.991e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.120237481549834 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.673577354380651, dt = 0.001565289990246581 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (2.2%)
   patch tree reduce : 1.67 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.5%)
   LB compute        : 264.78 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231336805555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5325004842671457e-27,-6.556467003957405e-27,2.3103958885018062e-17)
    sum a = (-2.2373813631167176e-27,-7.729055242140045e-26,-1.3755260652549166e-17)
    sum e = 1.236872348464705e-09
    sum de = -5.1872054354776315e-14
Info: cfl dt = 0.0015652837196238598 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0427e+04 | 11520 |      1 | 3.786e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.88328392633405 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.675142644370897, dt = 0.0015652837196238598 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (1.9%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 322.86 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231510416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3743963619083632e-27,-6.981025113230056e-27,2.308225718922359e-17)
    sum a = (9.328836658301317e-27,-9.796422665786085e-26,-1.397039031447227e-17)
    sum e = 1.2368722671498767e-09
    sum de = -5.201575982975229e-14
Info: cfl dt = 0.00156527759479296 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0123e+04 | 11520 |      1 | 3.824e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.734858538144243 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.676707928090521, dt = 0.00156527759479296 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (2.1%)
   patch tree reduce : 1.89 us    (0.7%)
   gen split merge   : 1.10 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.5%)
   LB compute        : 259.64 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231510416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3300162573865998e-27,-7.154384896518194e-27,2.306022128080425e-17)
    sum a = (-1.5127738745267885e-25,5.152439121090516e-25,-1.4182380973909967e-17)
    sum e = 1.236872185618297e-09
    sum de = -5.214946177472622e-14
Info: cfl dt = 0.0015652716173664533 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0445e+04 | 11520 |      1 | 3.784e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.891910828460789 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.678273205685314, dt = 0.0015652716173664533 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.9%)
   patch tree reduce : 1.65 us    (0.6%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 274.40 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231510416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7127946588868098e-27,-5.880190489350375e-27,2.3037856090300202e-17)
    sum a = (2.3842118987682724e-25,-2.507989917237087e-25,-1.4391214801511436e-17)
    sum e = 1.2368721038855785e-09
    sum de = -5.227321133885314e-14
Info: cfl dt = 0.0015652657878940965 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0026e+04 | 11520 |      1 | 3.837e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.687022457356912 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.67983847730268, dt = 0.0015652657878940965 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (2.1%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 269.30 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231510416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0221292822668655e-27,-6.857072868179037e-27,2.3015166573349248e-17)
    sum a = (4.123593014020151e-25,-3.43265892973611e-25,-1.4596872795431745e-17)
    sum e = 1.236872021967252e-09
    sum de = -5.2387061903561366e-14
Info: cfl dt = 0.0015652601058763844 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0239e+04 | 11520 |      1 | 3.810e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.791062932506387 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.681403743090574, dt = 0.0015652601058763844 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (2.1%)
   patch tree reduce : 1.70 us    (0.6%)
   gen split merge   : 1.04 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 266.08 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (53.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231510416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.4270369660339414e-28,-7.485328722815251e-27,2.299215771595281e-17)
    sum a = (9.512303316955155e-26,-1.5615001088155857e-25,-1.4799339057605528e-17)
    sum e = 1.2368719398787643e-09
    sum de = -5.249106774472595e-14
Info: cfl dt = 0.0015652545698048076 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8917e+04 | 11520 |      1 | 3.984e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.144481369026405 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.682969003196451, dt = 0.0015652545698048076 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.8%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 310.39 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231510416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.3978517524475175e-28,-7.564900863344507e-27,2.296883452666364e-17)
    sum a = (9.349033073054385e-26,2.907754977102785e-26,-1.4998596878734126e-17)
    sum e = 1.236871857635476e-09
    sum de = -5.258528521824344e-14
Info: cfl dt = 0.0015652491772264248 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8056e+04 | 11520 |      1 | 4.106e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.723333368867527 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.684534257766256, dt = 0.0015652491772264248 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (2.2%)
   patch tree reduce : 1.65 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.5%)
   LB compute        : 260.30 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (72.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231510416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8168105288596932e-28,-7.387727164824029e-27,2.2945202040657702e-17)
    sum a = (-2.979569267329897e-26,2.190570754433254e-25,-1.51946308180933e-17)
    sum e = 1.2368717752526586e-09
    sum de = -5.2669771591428945e-14
Info: cfl dt = 0.0015652439248296677 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9120e+04 | 11520 |      1 | 3.956e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.243719071850197 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.686099506943482, dt = 0.0015652439248296677 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.8%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 303.55 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231510416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.3978517524475175e-28,-6.871288370408665e-27,2.292126531609777e-17)
    sum a = (4.98799436465797e-26,2.969365310485557e-25,-1.5387427604773732e-17)
    sum e = 1.2368716927454906e-09
    sum de = -5.274458605769014e-14
Info: cfl dt = 0.0015652388085491836 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0428e+04 | 11520 |      1 | 3.786e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.883286741000251 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.687664750868312, dt = 0.0015652388085491836 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (1.5%)
   patch tree reduce : 1.69 us    (0.4%)
   gen split merge   : 1.02 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 389.52 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (72.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231510416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9693671381532552e-28,-6.3720121945388246e-27,2.289702943024533e-17)
    sum a = (4.072249047003703e-25,9.283901802473032e-26,-1.557697361523878e-17)
    sum e = 1.2368716101290596e-09
    sum de = -5.280978845726854e-14
Info: cfl dt = 0.0015652338236859906 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0362e+04 | 11520 |      1 | 3.794e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.85104257672742 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.689229989676861, dt = 0.0015652338236859906 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (2.0%)
   patch tree reduce : 1.77 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.5%)
   LB compute        : 280.06 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231510416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.294979680764875e-28,-6.38830801416791e-27,2.2872499481871642e-17)
    sum a = (-4.8953335604904595e-26,3.5765752874305915e-25,-1.5763257924207013e-17)
    sum e = 1.2368715274183578e-09
    sum de = -5.286544121400759e-14
Info: cfl dt = 0.0015652289650400144 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0444e+04 | 11520 |      1 | 3.784e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.891211715775528 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.6907952235005475, dt = 0.0015652289650400144 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (2.1%)
   patch tree reduce : 1.72 us    (0.6%)
   gen split merge   : 1.42 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.5%)
   LB compute        : 262.28 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231510416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.676675053968861e-28,-5.6251782481335235e-27,2.2847680584784508e-17)
    sum a = (1.6325828207572212e-25,-2.5871858670366075e-25,-1.5946268853298028e-17)
    sum e = 1.2368714446282762e-09
    sum de = -5.291160731161055e-14
Info: cfl dt = 0.0015652242270506802 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0395e+04 | 11520 |      1 | 3.790e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.867370421922592 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.6923604524655875, dt = 0.0015652242270506802 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (2.1%)
   patch tree reduce : 1.85 us    (0.7%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 262.93 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231336805555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.197898202123517e-28,-6.497004598289573e-27,2.282257787140641e-17)
    sum a = (1.9852885006504377e-25,7.093310244865783e-26,-1.612599515732734e-17)
    sum e = 1.2368713617736106e-09
    sum de = -5.2948350612657656e-14
Info: cfl dt = 0.0015652196039413336 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0393e+04 | 11520 |      1 | 3.790e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.86629071732048 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.693925676692638, dt = 0.0015652196039413336 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.6%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 326.49 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231076388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0665093867886291e-27,-6.12185402725404e-27,2.2797196491634488e-17)
    sum a = (1.334615492437234e-25,-2.405052345116256e-25,-1.6302429432058905e-17)
    sum e = 1.2368712788690522e-09
    sum de = -5.2975737472028853e-14
Info: cfl dt = 0.00156521508986422 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0396e+04 | 11520 |      1 | 3.790e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.867451987865799 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.69549089629658, dt = 0.00156521508986422 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (2.1%)
   patch tree reduce : 1.97 us    (0.7%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 268.13 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.63 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.38 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231076388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2135184830169706e-27,-6.750976680806696e-27,2.2771541603911146e-17)
    sum a = (6.70749804715803e-26,2.4889914185865397e-25,-1.6475563122495483e-17)
    sum e = 1.2368711959291893e-09
    sum de = -5.299383446499185e-14
Info: cfl dt = 0.001565210679041438 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9976e+04 | 11520 |      1 | 3.843e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.662350555711921 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.697056111386444, dt = 0.001565210679041438 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.7%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.4%)
   LB compute        : 331.05 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231076388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.242642926609378e-27,-5.9753650103755636e-27,2.2745618380850595e-17)
    sum a = (2.7950676507698293e-25,-4.150926651051192e-27,-1.6645387635062936e-17)
    sum e = 1.236871112968505e-09
    sum de = -5.300271002467987e-14
Info: cfl dt = 0.0015652063658981668 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8681e+04 | 11520 |      1 | 4.017e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.028603580985504 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.6986213220654856, dt = 0.0013786779345146272 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.8%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 311.00 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231076388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.787686085267286e-27,-6.159473100227566e-27,2.2722536846590135e-17)
    sum a = (3.1504309361408533e-25,-1.3697295165422467e-25,-1.679208092207484e-17)
    sum e = 1.236871039887137e-09
    sum de = -5.3001917682969894e-14
Info: cfl dt = 0.0015652026537029816 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0447e+04 | 11520 |      1 | 3.784e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.11771332832077 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 2707                                                    [SPH][rank=0]
Info: time since start : 1228.396088933 (s)                                           [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[-1.19665014e-35 -2.84543617e-20 -3.34317652e-15 ...  1.80931727e-10
 -2.45787551e-14 -4.01103692e-12]
(11520, 3)
[[-1.19665014e-35 -2.84543617e-20 -3.34317652e-15  1.10244276e-11
  -1.93503305e-14]
 [-7.98433019e-19 -1.51411088e-42 -6.47549017e-26 -1.02217641e-11
  -6.31737498e-12]
 [ 2.14540920e-05  1.19430789e-05 -8.31420325e-19  1.18781776e-08
   1.82244271e-09]
 ...
 [ 3.23009344e-05  3.07994901e-05  2.12007200e-06  2.44721438e-10
  -8.72064038e-12]
 [ 7.10330796e-06 -2.48243663e-26 -2.65259626e-27  1.10755836e-08
   4.73445296e-10]
 [-3.61801374e-63 -1.26593620e-37  1.80931727e-10 -2.45787551e-14
  -4.01103692e-12]]
compute original rho
Info: Dumping state to _to_trash/dusty_settle/dump/0000047.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 13.65 us   (72.6%)
Info: dump to _to_trash/dusty_settle/dump/0000047.sham                      [Shamrock Dump][rank=0]
              - took 1.18 ms, bandwidth = 2.50 GB/s
Info: evolve_until (target_time = 4.80s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 4.7, dt = 0.0015652026537029816 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.30 us    (1.0%)
   patch tree reduce : 1.15 us    (0.3%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.4%)
   LB compute        : 329.99 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231076388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3077654351317017e-27,-6.474294466678826e-27,2.2696152715641212e-17)
    sum a = (3.6714394944436936e-25,-1.913202035563564e-25,-1.69558158480032e-17)
    sum e = 1.2368709569296847e-09
    sum de = -5.299469851987563e-14
Info: cfl dt = 0.001565198500166314 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5156e+04 | 11520 |      1 | 4.579e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.304264483525673 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.701565202653703, dt = 0.001565198500166314 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.9%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 296.67 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231076388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9485031941646624e-27,-6.810612446257815e-27,2.2669485358885546e-17)
    sum a = (2.838424932570193e-25,1.280071303821287e-25,-1.711607758008733e-17)
    sum e = 1.236870873988105e-09
    sum de = -5.2977389314460393e-14
Info: cfl dt = 0.0015651944407130871 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0512e+04 | 11520 |      1 | 3.776e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.924075727686535 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.703130401153869, dt = 0.0015651944407130871 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (1.7%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 351.74 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231076388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.314639056469211e-27,-6.369758517356079e-27,2.2642569948689743e-17)
    sum a = (-1.3677982885564167e-25,1.1709933281763902e-26,-1.727301266049501e-17)
    sum e = 1.2368707910817296e-09
    sum de = -5.295114722574069e-14
Info: cfl dt = 0.001565190461247422 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0330e+04 | 11520 |      1 | 3.798e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.834887979593335 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.704695595594582, dt = 0.001565190461247422 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.8%)
   patch tree reduce : 1.68 us    (0.6%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 283.66 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231076388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.766822141278693e-27,-6.44881057853547e-27,2.2615411577116744e-17)
    sum a = (-1.7559551773331414e-25,6.881169878056088e-26,-1.742661685768018e-17)
    sum e = 1.2368707082236296e-09
    sum de = -5.291603449195398e-14
Info: cfl dt = 0.0015651865586810611 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0330e+04 | 11520 |      1 | 3.798e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.834838896761493 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.706260786055829, dt = 0.0015651865586810611 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.8%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 289.59 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231076388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4714170705557048e-27,-6.29885436599123e-27,2.2588015460721224e-17)
    sum a = (-4.967471166713403e-25,-4.450414344670616e-26,-1.7576889157470422e-17)
    sum e = 1.2368706254276374e-09
    sum de = -5.287212629260116e-14
Info: cfl dt = 0.001565182730561085 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7874e+04 | 11520 |      1 | 4.133e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.633525158134626 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.7078259726145095, dt = 0.001565182730561085 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (2.0%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 289.81 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231076388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4492877882888392e-27,-6.482442376493369e-27,2.256038681525971e-17)
    sum a = (-8.6401129112542e-26,3.2389553758791084e-25,-1.772382796433008e-17)
    sum e = 1.236870542707454e-09
    sum de = -5.2819498918244574e-14
Info: cfl dt = 0.00156517897512182 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9977e+04 | 11520 |      1 | 3.843e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.662394811537714 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.70939115534507, dt = 0.00156517897512182 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.41 us    (2.3%)
   patch tree reduce : 2.71 us    (0.8%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 296.54 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231076388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.624034449843283e-27,-5.6738923472374904e-27,2.2532530859368584e-17)
    sum a = (-1.8126611624466915e-25,1.6377550098916226e-25,-1.7867433999042665e-17)
    sum e = 1.2368704600766642e-09
    sum de = -5.2758229838713864e-14
Info: cfl dt = 0.0015651752912754881 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6284e+04 | 11520 |      1 | 4.383e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.856010209467655 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.710956334320192, dt = 0.0015651752912754881 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.9%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 308.55 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.231076388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2800886397996159e-27,-5.546126186954132e-27,2.2504452808542946e-17)
    sum a = (-3.5611982746529335e-25,2.994484276285092e-25,-1.8007705441776167e-17)
    sum e = 1.2368703775487283e-09
    sum de = -5.268839750421979e-14
Info: cfl dt = 0.0015651716785827332 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8104e+04 | 11520 |      1 | 4.099e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.745935336661626 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.712521509611467, dt = 0.0015651716785827332 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (2.1%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 292.35 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2308159722222225
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.8110199358184075e-28,-4.949075093309783e-27,2.2476157883317817e-17)
    sum a = (-1.8600863315619112e-25,-1.1679317944035217e-25,-1.8144646557669607e-17)
    sum e = 1.2368702951369855e-09
    sum de = -5.26100817756806e-14
Info: cfl dt = 0.0015651681372048224 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0366e+04 | 11520 |      1 | 3.794e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.85249413357972 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.71408668129005, dt = 0.0015651681372048224 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.0%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 296.22 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (63.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2308159722222225
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.243847494893635e-28,-5.46343357032569e-27,2.2447651292469563e-17)
    sum a = (-4.941275636659649e-25,-6.224985762332154e-26,-1.827825932900196e-17)
    sum e = 1.236870212854644e-09
    sum de = -5.2523362859069993e-14
Info: cfl dt = 0.0015651646678397626 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0428e+04 | 11520 |      1 | 3.786e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.882771341574157 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.715651849427255, dt = 0.0015651646678397626 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.2%)
   patch tree reduce : 1.93 us    (0.7%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.5%)
   LB compute        : 264.10 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.55 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2308159722222225
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.977445327775021e-28,-5.5293102879751825e-27,2.2418938243540926e-17)
    sum a = (-8.370321748512034e-26,4.934876927058484e-25,-1.8408545872786902e-17)
    sum e = 1.2368701307147912e-09
    sum de = -5.2428322405009907e-14
Info: cfl dt = 0.001565161271644602 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0598e+04 | 11520 |      1 | 3.765e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.965733839353733 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.717217014095095, dt = 0.001565161271644602 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (2.0%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 1.10 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 289.10 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2308159722222225
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.0496845376109195e-28,-4.330527386537704e-27,2.2390023940498585e-17)
    sum a = (1.2474623285847882e-25,1.3147155229135886e-25,-1.8535510873601736e-17)
    sum e = 1.2368700487303813e-09
    sum de = -5.2325042791016224e-14
Info: cfl dt = 0.0015651579501472208 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0512e+04 | 11520 |      1 | 3.776e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.923946774093972 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.718782175366739, dt = 0.0015651579501472208 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.72 us    (2.2%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 289.00 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2308159722222225
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.102264371742481e-29,-4.388429554155942e-27,2.2360913577986618e-17)
    sum a = (-4.432617229318256e-25,1.3537682812949077e-25,-1.8659158600116993e-17)
    sum e = 1.2368699669142436e-09
    sum de = -5.2213607469499744e-14
Info: cfl dt = 0.0015651547051505617 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0495e+04 | 11520 |      1 | 3.778e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.915438515765343 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.720347333316886, dt = 0.0015651547051505617 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.8%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.54 us    (0.5%)
   LB compute        : 304.75 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2308159722222225
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1719121350278173e-27,-4.179357655510447e-27,2.233161234398238e-17)
    sum a = (-1.7051503592427194e-25,1.2017516877262883e-26,-1.8779495539047505e-17)
    sum e = 1.2368698852790716e-09
    sum de = -5.2094101221016165e-14
Info: cfl dt = 0.0015651515386328804 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9977e+04 | 11520 |      1 | 3.843e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.66191525978458 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.721912488022037, dt = 0.0015651515386328804 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (1.6%)
   patch tree reduce : 1.93 us    (0.5%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.3%)
   LB compute        : 384.36 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2308159722222225
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.230161022212632e-27,-4.261183473222448e-27,2.2302125414677544e-17)
    sum a = (-1.1763614138659074e-25,2.0246043325028966e-25,-1.8896527444022272e-17)
    sum e = 1.236869803837425e-09
    sum de = -5.1966608753498716e-14
Info: cfl dt = 0.0015651484526474039 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6342e+04 | 11520 |      1 | 4.373e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.884337726425272 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.723477639560669, dt = 0.0015651484526474039 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.8%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 302.80 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (62.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2308159722222225
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3757832401746684e-27,-3.797272693143389e-27,2.227245795767136e-17)
    sum a = (5.212894011517672e-26,2.4648484683669173e-25,-1.9010262830651032e-17)
    sum e = 1.236869722601735e-09
    sum de = -5.1831216486693245e-14
Info: cfl dt = 0.0015651454492248678 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8203e+04 | 11520 |      1 | 4.085e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.794549419228057 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.725042788013317, dt = 0.0015651454492248678 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (2.4%)
   patch tree reduce : 1.68 us    (0.6%)
   gen split merge   : 1.07 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.5%)
   LB compute        : 263.71 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2308159722222225
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1622039871636815e-27,-3.361792917523585e-27,2.2242615124938526e-17)
    sum a = (-2.442057724456942e-25,-5.017179917573986e-25,-1.9120707890729464e-17)
    sum e = 1.2368696415842907e-09
    sum de = -5.1688011183330754e-14
Info: cfl dt = 0.0015651425302820787 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8788e+04 | 11520 |      1 | 4.002e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.080379372858518 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.7266079334625415, dt = 0.0015651425302820787 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (0.9%)
   patch tree reduce : 1.68 us    (0.2%)
   gen split merge   : 972.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.2%)
   LB compute        : 684.14 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2308159722222225
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7918467200662013e-27,-4.730815126150016e-27,2.221260206048126e-17)
    sum a = (2.817060939676679e-25,1.2835766386393732e-25,-1.9227872080500147e-17)
    sum e = 1.2368695607972487e-09
    sum de = -5.1537080590778786e-14
Info: cfl dt = 0.0015651396975396815 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0308e+04 | 11520 |      1 | 3.801e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.823792424346154 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.7281730759928235, dt = 0.0015651396975396815 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.9%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 307.42 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2308159722222225
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-9.361428297559487e-28,-4.047257500644885e-27,2.218242389100325e-17)
    sum a = (1.3985583817041477e-25,1.0490043826711093e-25,-1.933176561280288e-17)
    sum e = 1.2368694802526256e-09
    sum de = -5.1378513507408165e-14
Info: cfl dt = 0.0015651369524516214 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9251e+04 | 11520 |      1 | 3.938e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.30669043632619 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.729738215690364, dt = 0.0015651369524516214 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (2.0%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 307.58 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2308159722222225
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.224188119189297e-28,-3.912036869680137e-27,2.2152085726380497e-17)
    sum a = (-1.1015037926431726e-25,3.9139871672421284e-25,-1.9432399644392704e-17)
    sum e = 1.2368693999622993e-09
    sum de = -5.12123992957282e-14
Info: cfl dt = 0.001565134296148651 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0454e+04 | 11520 |      1 | 3.783e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.89499281119316 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.731303352642815, dt = 0.001565134296148651 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (1.9%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.52 us    (0.5%)
   LB compute        : 303.69 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2308159722222225
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.191328430756089e-27,-3.080603349030224e-27,2.2121592658157936e-17)
    sum a = (-4.819608273552368e-25,-1.7153036083504475e-25,-1.9529783497706874e-17)
    sum e = 1.2368693199380067e-09
    sum de = -5.103882803385e-14
Info: cfl dt = 0.0015651317293977481 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8239e+04 | 11520 |      1 | 4.079e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.812058198095254 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.732868486938964, dt = 0.0015651317293977481 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (2.0%)
   patch tree reduce : 1.76 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 295.31 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (62.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.230555555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2190052260881748e-27,-3.78323055069705e-27,2.2090949764952025e-17)
    sum a = (2.1811070438635548e-25,-4.6681789362496365e-25,-1.9623930192364336e-17)
    sum e = 1.236869240191343e-09
    sum de = -5.085789071907865e-14
Info: cfl dt = 0.0015651292525779579 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0367e+04 | 11520 |      1 | 3.794e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.852781390728373 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.734433618668361, dt = 0.0015651292525779579 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (1.9%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.63 us    (0.5%)
   LB compute        : 300.11 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.230555555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3369506487181254e-27,-4.73792287726483e-27,2.2060162101739886e-17)
    sum a = (4.877287673849081e-25,4.158290107846356e-26,-1.9714850960136375e-17)
    sum e = 1.2368691607337595e-09
    sum de = -5.0669678889627884e-14
Info: cfl dt = 0.0015651268656747086 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0235e+04 | 11520 |      1 | 3.810e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.787829672423785 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.735998747920939, dt = 0.0015651268656747086 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (2.0%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 1.38 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 265.30 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.230555555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.8416527976651527e-28,-4.274705536318923e-27,2.202923470750862e-17)
    sum a = (-4.819765164156243e-25,-3.0075551705455594e-25,-1.980256032523115e-17)
    sum e = 1.236869081576565e-09
    sum de = -5.047428449550519e-14
Info: cfl dt = 0.0015651245682910865 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0120e+04 | 11520 |      1 | 3.825e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.73180209394455 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.737563874786614, dt = 0.0015651245682910865 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (2.1%)
   patch tree reduce : 1.70 us    (0.6%)
   gen split merge   : 992.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.4%)
   LB compute        : 262.84 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.230381944444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.9083444944358303e-27,-5.00333670547897e-27,2.199817259570458e-17)
    sum a = (-1.3768589376299712e-25,1.6315487296499073e-25,-1.98870727063927e-17)
    sum e = 1.2368690027309244e-09
    sum de = -5.027180081185353e-14
Info: cfl dt = 0.0015651223596764483 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0386e+04 | 11520 |      1 | 3.791e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.861776984447012 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.739128999354905, dt = 0.0015651223596764483 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.9%)
   patch tree reduce : 1.72 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.5%)
   LB compute        : 290.59 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.230381944444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.8556431203162362e-27,-4.396230744403908e-27,2.1966980757304615e-17)
    sum a = (-5.159901392962154e-25,1.6769958636378093e-25,-1.996840152573527e-17)
    sum e = 1.2368689242078556e-09
    sum de = -5.006232144970719e-14
Info: cfl dt = 0.0015651202387709999 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7144e+04 | 11520 |      1 | 4.244e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.27608960491001 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.740694121714581, dt = 0.0015651202387709999 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.7%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 314.26 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.230381944444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.933247533235306e-27,-4.130123477056615e-27,2.1935664163214667e-17)
    sum a = (-1.9677722281470043e-25,2.7169031916808736e-25,-2.0046561740892478e-17)
    sum e = 1.2368688460182275e-09
    sum de = -4.984594021722652e-14
Info: cfl dt = 0.0015651182042646884 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0361e+04 | 11520 |      1 | 3.794e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.849422112680406 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.742259241953352, dt = 0.0015651182042646884 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.2%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 274.99 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.39 us    (63.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.230381944444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.994270176952731e-27,-3.612991243508098e-27,2.1904227759404613e-17)
    sum a = (-8.434018466886679e-25,-4.224575954584409e-25,-2.0121571059458418e-17)
    sum e = 1.2368687681727644e-09
    sum de = -4.962275199119157e-14
Info: cfl dt = 0.0015651162546683162 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9783e+04 | 11520 |      1 | 3.868e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.566729419570837 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.743824360157617, dt = 0.0015651162546683162 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (2.1%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.5%)
   LB compute        : 265.87 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.230381944444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.8318838798070006e-27,-4.8436723450705945e-27,2.1872676462192173e-17)
    sum a = (2.5165339541564428e-26,-1.0890158206540117e-26,-2.019344511266343e-17)
    sum e = 1.2368686906820413e-09
    sum de = -4.9392852127072917e-14
Info: cfl dt = 0.0015651143883943243 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0193e+04 | 11520 |      1 | 3.815e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.767318283380527 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.745389476412285, dt = 0.0015651143883943243 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.7%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 310.46 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.230381944444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.110707181328344e-27,-4.4924454241288256e-27,2.1841015165132928e-17)
    sum a = (-3.201744565195226e-25,1.4383444519687753e-26,-2.0262201894806442e-17)
    sum e = 1.2368686135564813e-09
    sum de = -4.915633651888501e-14
Info: cfl dt = 0.0015651126038444844 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8576e+04 | 11520 |      1 | 4.031e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.976326721491489 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.746954590800679, dt = 0.0015651126038444844 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (2.0%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.4%)
   LB compute        : 311.54 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.230381944444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.858234566866798e-27,-4.48828478932991e-27,2.180924873147085e-17)
    sum a = (8.183179862452489e-26,3.48289686133518e-25,-2.0327858538848997e-17)
    sum e = 1.2368685368063599e-09
    sum de = -4.891330141737397e-14
Info: cfl dt = 0.0015651108995012773 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0331e+04 | 11520 |      1 | 3.798e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.835036426504487 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.748519703404524, dt = 0.0015651108995012773 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (1.9%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 322.38 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.230555555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.429689182578519e-27,-3.685282273139252e-27,2.1777381998468133e-17)
    sum a = (-1.507072938053358e-25,5.13268043979025e-26,-2.0390434670398305e-17)
    sum e = 1.2368684604418022e-09
    sum de = -4.8663843917598916e-14
Info: cfl dt = 0.001565109274019473 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7106e+04 | 11520 |      1 | 4.250e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.257587187193902 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.750084814304025, dt = 0.001565109274019473 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.8%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 297.19 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.230555555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.859621445133103e-27,-3.851707665095865e-27,2.1745419770762048e-17)
    sum a = (2.290895794619933e-25,-1.3730094836420582e-27,-2.044994834242067e-17)
    sum e = 1.2368683844727777e-09
    sum de = -4.840806135277855e-14
Info: cfl dt = 0.001565107726315569 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0421e+04 | 11520 |      1 | 3.787e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.878765884644325 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.751649923578045, dt = 0.001565107726315569 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (2.0%)
   patch tree reduce : 1.99 us    (0.7%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.5%)
   LB compute        : 265.29 us  (88.0%)
   LB move op cnt    : 0
   LB apply          : 19.32 us   (6.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.230555555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.1953067555729554e-27,-3.88568618262034e-27,2.1713366825902743e-17)
    sum a = (-4.789092617699073e-25,4.188099755982209e-25,-2.050642158691139e-17)
    sum e = 1.2368683089091043e-09
    sum de = -4.814605144808032e-14
Info: cfl dt = 0.0015651062556509684 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0518e+04 | 11520 |      1 | 3.775e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.92624638317371 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.75321503130436, dt = 0.0015651062556509684 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.7%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 326.69 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.230555555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.504519838964979e-27,-2.896668618961509e-27,2.1681227903813666e-17)
    sum a = (-1.8805549211747418e-25,2.1715687885870413e-25,-2.055987308615428e-17)
    sum e = 1.236868233760449e-09
    sum de = -4.7877912655560544e-14
Info: cfl dt = 0.0015651048617061002 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8395e+04 | 11520 |      1 | 4.057e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.88807823306983 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.754780137560011, dt = 0.0015651048617061002 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    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   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 314.24 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.230555555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.58634565667698e-27,-2.7214018780572006e-27,2.1649007717849148e-17)
    sum a = (-7.489849079164489e-25,1.3254447599012916e-25,-2.0610324334604483e-17)
    sum e = 1.2368681590363221e-09
    sum de = -4.760374367782354e-14
Info: cfl dt = 0.001565103544643366 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7774e+04 | 11520 |      1 | 4.148e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.58411604622704 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.756345242421717, dt = 0.001565103544643366 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (1.6%)
   patch tree reduce : 1.90 us    (0.5%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 358.49 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.230555555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.153518097601754e-27,-2.5662448720143166e-27,2.16167109454295e-17)
    sum a = (-3.2375528952323075e-25,-4.962553816460435e-27,-2.06577973921072e-17)
    sum e = 1.2368680847460787e-09
    sum de = -4.7323643368967595e-14
Info: cfl dt = 0.0015651023051551508 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.3781e+04 | 11520 |      1 | 4.844e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.631215150666772 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.75791034596636, dt = 0.0015651023051551508 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.9%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 290.93 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.230555555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.314395976493146e-27,-2.689503677932183e-27,2.1584342229029174e-17)
    sum a = (-2.4529195816788605e-26,4.5522198774065757e-26,-2.0702314124313805e-17)
    sum e = 1.2368680108989231e-09
    sum de = -4.703771124255371e-14
Info: cfl dt = 0.0015651011444964692 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0442e+04 | 11520 |      1 | 3.784e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.88889335621238 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.759475448271515, dt = 0.0015651011444964692 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (2.0%)
   patch tree reduce : 1.96 us    (0.7%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.5%)
   LB compute        : 263.27 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 5.17 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.230555555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.145196828003924e-27,-2.579420215544215e-27,2.1551906176925662e-17)
    sum a = (4.7635627892131455e-26,-1.761149036440454e-26,-2.074389730945129e-17)
    sum e = 1.2368679375038981e-09
    sum de = -4.674604745052035e-14
Info: cfl dt = 0.0015651000644996845 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0394e+04 | 11520 |      1 | 3.790e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.86538007224775 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.761040549416012, dt = 0.0015651000644996845 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (2.1%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 280.47 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.230555555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.032859688433209e-27,-2.6550050810578435e-27,2.1519407360911855e-17)
    sum a = (-6.823148958986297e-25,5.851534117172846e-26,-2.0782571602706075e-17)
    sum e = 1.236867864569892e-09
    sum de = -4.6448751690971526e-14
Info: cfl dt = 0.0015650990675708785 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7724e+04 | 11520 |      1 | 4.155e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.559630669669588 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.762605649480512, dt = 0.0015650990675708785 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (2.1%)
   patch tree reduce : 1.94 us    (0.7%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 265.67 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.230555555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.652733503477577e-27,-2.5050488685136038e-27,2.1486850312899576e-17)
    sum a = (4.684984867041047e-25,1.4493354622292435e-25,-2.081836015910403e-17)
    sum e = 1.2368677921056374e-09
    sum de = -4.614592471344359e-14
Info: cfl dt = 0.0015650981566672514 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8185e+04 | 11520 |      1 | 4.087e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.78499787828735 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.764170748548083, dt = 0.0015650981566672514 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (1.9%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1.18 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 323.26 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.230555555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.030085931900598e-27,-2.1997622901431914e-27,2.145423952951083e-17)
    sum a = (-1.090369760561492e-25,2.8358496729894476e-26,-2.0851286938695593e-17)
    sum e = 1.2368677201197065e-09
    sum de = -4.5837666847361266e-14
Info: cfl dt = 0.0015650973352560377 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0363e+04 | 11520 |      1 | 3.794e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.850559862233046 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.76573584670475, dt = 0.0015650973352560377 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (2.0%)
   patch tree reduce : 2.19 us    (0.8%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 270.04 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.230555555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.655568030004203e-27,-2.2545439816622432e-27,2.14215794690246e-17)
    sum a = (1.5627084265051039e-26,5.263723099977754e-27,-2.088137863759275e-17)
    sum e = 1.2368676486205175e-09
    sum de = -4.5524079349281326e-14
Info: cfl dt = 0.0015650966072551537 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8076e+04 | 11520 |      1 | 4.103e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.731998636151099 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.767300944040006, dt = 0.0015650966072551537 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.9%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 286.38 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.31 us    (62.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.230555555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.522427716438913e-27,-2.2699730023748877e-27,2.1388874545973574e-17)
    sum a = (-1.625187292402149e-26,-1.596387465003949e-25,-2.0908659589366583e-17)
    sum e = 1.236867577616326e-09
    sum de = -4.520526360635961e-14
Info: cfl dt = 0.0015650959769577773 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8161e+04 | 11520 |      1 | 4.091e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.773513384426522 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.768866040647261, dt = 0.0015650959769577773 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (2.0%)
   patch tree reduce : 1.83 us    (0.7%)
   gen split merge   : 1.10 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 260.38 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.230555555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.577902847091118e-27,-2.6499776473424875e-27,2.1356129138266442e-17)
    sum a = (2.0281703432451336e-25,1.8760930737523633e-25,-2.0933156002327924e-17)
    sum e = 1.2368675071152328e-09
    sum de = -4.488132053341956e-14
Info: cfl dt = 0.001565095448942183 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0483e+04 | 11520 |      1 | 3.779e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.90921430622803 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.770431136624219, dt = 0.001565095448942183 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 23.62 us   (7.6%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 272.18 us  (87.7%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.230555555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.064757888558226e-27,-2.066621976577901e-27,2.1323347581476058e-17)
    sum a = (4.9214350428617795e-25,1.8114966181024535e-25,-2.0954894939070294e-17)
    sum e = 1.2368674371251775e-09
    sum de = -4.4552352053359577e-14
Info: cfl dt = 0.0015650950279692496 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0441e+04 | 11520 |      1 | 3.784e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.888414088757466 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.771996232073161, dt = 0.0015650950279692496 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.6%)
   patch tree reduce : 2.22 us    (0.6%)
   gen split merge   : 1.49 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 326.98 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.230555555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.087008710813125e-27,-1.8048487038128116e-27,2.129053416786861e-17)
    sum a = (-3.808749110797064e-26,1.3374837300517364e-26,-2.0973904023013732e-17)
    sum e = 1.2368673676539404e-09
    sum de = -4.4218459900278654e-14
Info: cfl dt = 0.0015650947188706088 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0388e+04 | 11520 |      1 | 3.791e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.862635161185947 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.77356132710113, dt = 0.0015650947188706088 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (2.0%)
   patch tree reduce : 1.96 us    (0.7%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.5%)
   LB compute        : 270.16 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (63.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.230555555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.576576738818829e-27,-1.907997774869254e-27,2.1257693145925847e-17)
    sum a = (-2.617600107416678e-25,2.302773973571378e-25,-2.0990210004693056e-17)
    sum e = 1.2368672987091431e-09
    sum de = -4.387974623842164e-14
Info: cfl dt = 0.0015650945264303218 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0464e+04 | 11520 |      1 | 3.781e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.899866797948018 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.7751264218200005, dt = 0.0015650945264303218 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (2.0%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1.35 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.5%)
   LB compute        : 281.88 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.230555555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.142423071471313e-27,-1.3868782663051092e-27,2.1224828722946165e-17)
    sum a = (2.326087830627425e-25,-8.293618712396197e-26,-2.100384160768717e-17)
    sum e = 1.2368672302982457e-09
    sum de = -4.3536312506615805e-14
Info: cfl dt = 0.0015650944552635278 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0418e+04 | 11520 |      1 | 3.787e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.87706949156429 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.776691516346431, dt = 0.0015650944552635278 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (2.0%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 295.32 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.230555555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.396282564199164e-27,-1.761335398207489e-27,2.1191945059476297e-17)
    sum a = (2.774713478613969e-25,-5.0099360790292915e-25,-2.1014827123735428e-17)
    sum e = 1.2368671624285523e-09
    sum de = -4.3188261648419034e-14
Info: cfl dt = 0.0015650945096954381 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0498e+04 | 11520 |      1 | 3.777e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.916229627391271 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.778256610801694, dt = 0.0015650945096954381 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.8%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 1.43 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 303.61 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (63.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.230555555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.909488292726071e-27,-2.8547155514057794e-27,2.1159046272257736e-17)
    sum a = (7.812805353446545e-26,6.897261999939809e-26,-2.1023196331499628e-17)
    sum e = 1.236867095107201e-09
    sum de = -4.2835695470671167e-14
Info: cfl dt = 0.0015650946936443578 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0336e+04 | 11520 |      1 | 3.798e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.836902140427473 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.77982170531139, dt = 0.0015650946936443578 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.79 us    (2.4%)
   patch tree reduce : 1.92 us    (0.7%)
   gen split merge   : 991.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.5%)
   LB compute        : 257.64 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.230555555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.9372258580521726e-27,-2.3074187155651256e-27,2.1126136429912835e-17)
    sum a = (-4.089891005350021e-26,-1.0455904951387075e-25,-2.1028977632364332e-17)
    sum e = 1.2368670283411754e-09
    sum de = -4.24787163645841e-14
Info: cfl dt = 0.0015650950105116806 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8278e+04 | 11520 |      1 | 4.074e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.830680136033244 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.781386800005034, dt = 0.0015650950105116806 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.6%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 320.36 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.230555555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.1119725196066165e-27,-2.6175593678676057e-27,2.109321955782803e-17)
    sum a = (-9.733935131899876e-26,-2.4620266044944444e-25,-2.103220125598543e-17)
    sum e = 1.2368669621372961e-09
    sum de = -4.211742702871664e-14
Info: cfl dt = 0.0015650954630829878 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0419e+04 | 11520 |      1 | 3.787e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.877892418079611 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.782951895015546, dt = 0.0015650954630829878 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.6%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 328.63 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.230555555555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.3102961116882474e-27,-3.120476099186496e-27,2.1060299632440577e-17)
    sum a = (5.082519653294743e-25,-3.042934868518461e-25,-2.1032899203025967e-17)
    sum e = 1.2368668965022216e-09
    sum de = -4.175192941336091e-14
Info: cfl dt = 0.001565096053442376 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0288e+04 | 11520 |      1 | 3.803e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.813796031562891 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.784516990478629, dt = 0.001565096053442376 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.6%)
   patch tree reduce : 2.26 us    (0.6%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 340.53 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2308159722222225
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.038528741486462e-27,-3.641075528400776e-27,2.1027380578721367e-17)
    sum a = (-4.394823929762525e-25,-3.1831586628289047e-26,-2.1031099399741947e-17)
    sum e = 1.2368668314424558e-09
    sum de = -4.138232649824219e-14
Info: cfl dt = 0.001565096782903028 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0122e+04 | 11520 |      1 | 3.825e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.732235802215145 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.786082086532072, dt = 0.001565096782903028 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (2.0%)
   patch tree reduce : 2.24 us    (0.7%)
   gen split merge   : 1.46 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 278.36 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2308159722222225
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.469787112313334e-27,-3.477423892976773e-27,2.0994466281148614e-17)
    sum a = (2.193243962291557e-25,7.254721205090787e-26,-2.102683537309547e-17)
    sum e = 1.2368667669643354e-09
    sum de = -4.1008720313757665e-14
Info: cfl dt = 0.0015650976519563282 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0358e+04 | 11520 |      1 | 3.795e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.848034150798833 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.7876471833149745, dt = 0.0015650976519563282 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.8%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 297.90 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.230642361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.5877325349432856e-27,-3.2704323117307356e-27,2.0961560567292063e-17)
    sum a = (-2.6401394796408855e-27,1.5896199324638381e-25,-2.1020138114282484e-17)
    sum e = 1.2368667030740431e-09
    sum de = -4.063121357479776e-14
Info: cfl dt = 0.0015650986602409607 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0455e+04 | 11520 |      1 | 3.783e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.895490600853186 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.789212280966931, dt = 0.0015650986602409607 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.3%)
   patch tree reduce : 1.95 us    (0.7%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.5%)
   LB compute        : 265.95 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.230642361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.792990518356441e-27,-2.9608117387781203e-27,2.0928667218234682e-17)
    sum a = (-1.9521273745041662e-25,-2.7762702494678965e-27,-2.1011039794080173e-17)
    sum e = 1.2368666397775964e-09
    sum de = -4.0249908110897577e-14
Info: cfl dt = 0.001565099806533492 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0360e+04 | 11520 |      1 | 3.794e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.848786989787646 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.790777379627172, dt = 0.001565099806533492 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.1%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 290.57 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (64.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.230642361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.250660346237127e-27,-3.0939520523434105e-27,2.0895789963781696e-17)
    sum a = (1.912049193004698e-25,1.419471205761654e-25,-2.0999572000107675e-17)
    sum e = 1.236866577080858e-09
    sum de = -3.986490664207219e-14
Info: cfl dt = 0.0015651010887607509 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0221e+04 | 11520 |      1 | 3.812e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.780976835445847 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.792342479433705, dt = 0.0015651010887607509 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (1.4%)
   patch tree reduce : 1.90 us    (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.3%)
   LB compute        : 415.03 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.230642361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.634886395997659e-27,-2.753300078182218e-27,2.0862932484897332e-17)
    sum a = (-5.081979637569801e-25,2.9714946020237933e-25,-2.0985769200035866e-17)
    sum e = 1.2368665149895256e-09
    sum de = -3.9476311022312635e-14
Info: cfl dt = 0.0015651025040336703 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0326e+04 | 11520 |      1 | 3.799e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.832385571255186 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.793907580522466, dt = 0.0015651025040336703 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.8%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.5%)
   LB compute        : 298.10 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.230642361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.9759976795147e-27,-2.167864090018174e-27,2.083009840638141e-17)
    sum a = (2.932984026364708e-25,-8.867708302744033e-26,-2.0969662979561672e-17)
    sum e = 1.2368664535091423e-09
    sum de = -3.908422354437037e-14
Info: cfl dt = 0.0015651040487030417 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9860e+04 | 11520 |      1 | 3.858e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.604465777298643 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.7954726830264995, dt = 0.0015651040487030417 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.7%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 312.60 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.230642361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.897006388329325e-27,-2.6149589711182835e-27,2.079729130589029e-17)
    sum a = (2.2052699304582556e-25,-3.0230192966143193e-25,-2.0951287733815303e-17)
    sum e = 1.2368663926450888e-09
    sum de = -3.868874598650271e-14
Info: cfl dt = 0.0015651057184345248 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0342e+04 | 11520 |      1 | 3.797e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.840224537769192 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.797037787075203, dt = 0.0015651057184345248 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.7%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 322.82 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.230642361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.602988195872642e-27,-3.262804481266058e-27,2.076451470519538e-17)
    sum a = (5.16110277626034e-25,-1.1015462657900784e-25,-2.093067765127274e-17)
    sum e = 1.236866332402588e-09
    sum de = -3.828998063240567e-14
Info: cfl dt = 0.0015651075083021604 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0339e+04 | 11520 |      1 | 3.797e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.838543432571514 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.798602892793637, dt = 0.001397107206363657 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.8%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 304.04 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.230642361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.675166635714524e-27,-3.2721659095636175e-27,2.0735288433108387e-17)
    sum a = (-2.8481998239508945e-25,5.214690018872537e-25,-2.0910437050766723e-17)
    sum e = 1.2368662792188123e-09
    sum de = -3.793099932685314e-14
Info: cfl dt = 0.001565109214681838 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0431e+04 | 11520 |      1 | 3.786e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.285943559510876 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 2771                                                    [SPH][rank=0]
Info: time since start : 1256.490291322 (s)                                           [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[-1.72052783e-36 -1.31434858e-20 -2.45817057e-15 ...  1.92329115e-10
 -1.60839239e-14 -3.38794987e-12]
(11520, 3)
[[-1.72052783e-36 -1.31434858e-20 -2.45817057e-15  7.38643964e-12
  -1.84298740e-14]
 [-1.55684080e-23 -1.92186903e-44 -1.13500215e-26 -5.10936973e-12
  -4.79334086e-12]
 [ 2.11256207e-05  1.11029768e-05 -6.55354701e-20  1.21325483e-08
   1.91950223e-09]
 ...
 [ 3.21304273e-05  2.99772970e-05  7.31263192e-07  1.59219203e-09
  -5.28765126e-12]
 [ 6.80473625e-06 -7.27058610e-29 -2.58238530e-28  1.07100101e-08
   4.01489839e-10]
 [-4.50505803e-66 -8.73446470e-39  1.92329115e-10 -1.60839239e-14
  -3.38794987e-12]]
compute original rho
Info: Dumping state to _to_trash/dusty_settle/dump/0000048.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.67 us   (71.5%)
Info: dump to _to_trash/dusty_settle/dump/0000048.sham                      [Shamrock Dump][rank=0]
              - took 1.20 ms, bandwidth = 2.47 GB/s
Info: evolve_until (target_time = 4.90s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 4.800000000000001, dt = 0.001565109214681838 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.28 us    (0.9%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 931.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 338.58 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.230642361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.658463326524846e-27,-1.9846227990826114e-27,2.070257545452681e-17)
    sum a = (-4.616358663228605e-25,-3.684512339001723e-25,-2.0885673277139518e-17)
    sum e = 1.2368662201040345e-09
    sum de = -3.752663526455015e-14
Info: cfl dt = 0.001565111205221512 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4695e+04 | 11520 |      1 | 4.665e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.078099630167378 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.801565109214683, dt = 0.001565111205221512 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.9%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 1.09 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.5%)
   LB compute        : 284.31 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.230642361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.507232825503573e-27,-3.2737261476132104e-27,2.066990643227801e-17)
    sum a = (6.057329515914195e-25,-1.827992234881778e-27,-2.0858791072727344e-17)
    sum e = 1.2368661616871082e-09
    sum de = -3.7118921899437554e-14
Info: cfl dt = 0.00156511331101308 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0470e+04 | 11520 |      1 | 3.781e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.902617057716967 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.803130220419904, dt = 0.00156511331101308 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.9%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 295.12 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.230381944444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.725094253301507e-27,-2.9928832986864257e-27,2.0637281097528805e-17)
    sum a = (-1.7742021613231343e-25,5.332118735278423e-25,-2.0829808309910397e-17)
    sum e = 1.2368661039108426e-09
    sum de = -3.670832338740932e-14
Info: cfl dt = 0.0015651155142863498 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0155e+04 | 11520 |      1 | 3.820e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.748864290481016 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.804695333730917, dt = 0.0015651155142863498 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.7%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 1.19 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 324.06 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.230381944444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.6043750741389465e-27,-1.7349847111476918e-27,2.0604702722026266e-17)
    sum a = (-7.946639106144988e-26,-2.4582850669716283e-26,-2.0798762448082726e-17)
    sum e = 1.236866046779387e-09
    sum de = -3.629493211657461e-14
Info: cfl dt = 0.0015651178090439577 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0414e+04 | 11520 |      1 | 3.788e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.87532649791385 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.806260449245204, dt = 0.0015651178090439577 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.9%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.5%)
   LB compute        : 297.56 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2301215277777775
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.655689569992236e-27,-2.2172716282552936e-27,2.0572174503704343e-17)
    sum a = (3.2425621261704183e-25,5.195924255731054e-26,-2.076568799058849e-17)
    sum e = 1.2368659902970387e-09
    sum de = -3.587884927738493e-14
Info: cfl dt = 0.0015651201894188896 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0535e+04 | 11520 |      1 | 3.773e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.93443331695983 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.807825567054247, dt = 0.0015651201894188896 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (2.0%)
   patch tree reduce : 1.96 us    (0.7%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 267.11 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2301215277777775
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.8291101232743906e-27,-2.0695690928937995e-27,2.0539699588942546e-17)
    sum a = (-1.6874243214015072e-25,3.1916177534544494e-25,-2.073062081633908e-17)
    sum e = 1.2368659344679319e-09
    sum de = -3.546017478253434e-14
Info: cfl dt = 0.001565122649859703 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0462e+04 | 11520 |      1 | 3.782e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.899124271681085 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.809390687243666, dt = 0.001565122649859703 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (2.1%)
   patch tree reduce : 1.94 us    (0.7%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.5%)
   LB compute        : 268.38 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2301215277777775
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.5170017433617246e-27,-1.371622605375753e-27,2.0507281066919992e-17)
    sum a = (-1.1647350399996884e-25,2.3297717260222983e-25,-2.0693597858526483e-17)
    sum e = 1.2368658792960407e-09
    sum de = -3.5039008578527626e-14
Info: cfl dt = 0.0015651251852596944 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5601e+04 | 11520 |      1 | 4.500e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.521248263190579 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.8109558098935254, dt = 0.0015651251852596944 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (2.2%)
   patch tree reduce : 1.56 us    (0.5%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.88 us    (0.6%)
   LB compute        : 275.52 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 us    (72.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2301215277777775
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.634886395997659e-27,-1.072750338987002e-27,2.0474921968453175e-17)
    sum a = (-2.186148346361574e-25,1.3666276766197636e-26,-2.065465581958693e-17)
    sum e = 1.2368658247851884e-09
    sum de = -3.4615450985666795e-14
Info: cfl dt = 0.0015651277910751777 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0504e+04 | 11520 |      1 | 3.777e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.919394585856685 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.812520935078785, dt = 0.0015651277910751777 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.8%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 305.55 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2301215277777775
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.063431780285938e-27,-1.2199327949986318e-27,2.0442625267221992e-17)
    sum a = (-2.4034158287620158e-25,3.99074264469241e-25,-2.0613830742361177e-17)
    sum e = 1.2368657709390395e-09
    sum de = -3.418960107621332e-14
Info: cfl dt = 0.0015651304634297098 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0298e+04 | 11520 |      1 | 3.802e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.818785814932733 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.81408606286986, dt = 0.0015651304634297098 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (1.9%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 303.48 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2301215277777775
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.4531445731176735e-27,-2.9072435657420854e-28,2.04103938809971e-17)
    sum a = (3.0677599894853223e-25,-1.484673987253614e-25,-2.0571161398018614e-17)
    sum e = 1.2368657177611025e-09
    sum de = -3.3761557964574286e-14
Info: cfl dt = 0.001565133199201392 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0358e+04 | 11520 |      1 | 3.795e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.848229403074498 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.81565119333329, dt = 0.001565133199201392 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.9%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.5%)
   LB compute        : 293.46 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2301215277777775
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.561381847883488e-27,-9.236609253592027e-28,2.0378230664888624e-17)
    sum a = (3.9199368750045775e-25,3.0929075596491e-26,-2.0526683552311772e-17)
    sum e = 1.2368656652547327e-09
    sum de = -3.333142090687989e-14
Info: cfl dt = 0.0015651359960911517 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0405e+04 | 11520 |      1 | 3.789e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.871127931329855 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.817216326532491, dt = 0.0015651359960911517 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.8%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 309.72 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2301215277777775
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.854073932067882e-27,-7.7249119433194585e-28,2.0346138420428793e-17)
    sum a = (1.2798840752553358e-25,-4.719869622832661e-25,-2.0480436574481177e-17)
    sum e = 1.2368656134231316e-09
    sum de = -3.289928789471038e-14
Info: cfl dt = 0.0015651388526702354 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0391e+04 | 11520 |      1 | 3.791e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.864481426348691 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.818781462528582, dt = 0.0015651388526702354 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (1.9%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 304.54 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2301215277777775
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.854073932067882e-27,-1.893955632422915e-27,2.0314119884809102e-17)
    sum a = (-3.8812187010050046e-25,-2.2015825678677167e-27,-2.0432456898692628e-17)
    sum e = 1.2368655622693452e-09
    sum de = -3.246525709813881e-14
Info: cfl dt = 0.001565141768405712 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0286e+04 | 11520 |      1 | 3.804e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.81291997925273 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.820346601381252, dt = 0.001565141768405712 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (2.2%)
   patch tree reduce : 1.68 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 264.32 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.230381944444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.8581737968727815e-27,-1.5226189766197218e-27,2.0282177740563468e-17)
    sum a = (2.0118905593960027e-25,-2.7907431909757068e-25,-2.0382783135586084e-17)
    sum e = 1.236865511796269e-09
    sum de = -3.2029426379519296e-14
Info: cfl dt = 0.0015651447436633656 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7097e+04 | 11520 |      1 | 4.251e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.253368128170232 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.821911743149657, dt = 0.0015651447436633656 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (1.7%)
   patch tree reduce : 1.96 us    (0.5%)
   gen split merge   : 1.19 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.3%)
   LB compute        : 352.87 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.230381944444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.0829088460082256e-27,-2.195601655344276e-27,2.0250314607927244e-17)
    sum a = (1.9587939249705117e-25,-3.636484527939848e-25,-2.0331454789465996e-17)
    sum e = 1.2368654620066441e-09
    sum de = -3.159189254321861e-14
Info: cfl dt = 0.0015651477796881075 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8562e+04 | 11520 |      1 | 4.033e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.969759831875272 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.823476887893321, dt = 0.0015651477796881075 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (1.7%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 331.63 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.230381944444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.7999856796819835e-27,-2.8361660545939484e-27,2.0218533044752605e-17)
    sum a = (1.8192479674127245e-25,-1.2618217194345448e-25,-2.027850761468094e-17)
    sum e = 1.2368654129030595e-09
    sum de = -3.1152752644796434e-14
Info: cfl dt = 0.0015651508785627269 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9857e+04 | 11520 |      1 | 3.858e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.603155438944961 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.825042035673009, dt = 0.0015651508785627269 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.6%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.4%)
   LB compute        : 346.76 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.230381944444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.515675635089436e-27,-2.8325254991448974e-27,2.0186835555781918e-17)
    sum a = (-2.5482726632808352e-25,2.39545384731505e-25,-2.0223983291514423e-17)
    sum e = 1.2368653644879548e-09
    sum de = -3.0712103138015465e-14
Info: cfl dt = 0.0015651540431456225 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9577e+04 | 11520 |      1 | 3.895e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.46627063636291 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.826607186551572, dt = 0.0015651540431456225 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.9%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.5%)
   LB compute        : 293.94 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 us    (72.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.230381944444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.2576555075626695e-27,-2.1536485877885466e-27,2.0155224575971228e-17)
    sum a = (1.0667555576808981e-25,1.3326651948752426e-25,-2.016791825282441e-17)
    sum e = 1.2368653167636188e-09
    sum de = -3.027003960061441e-14
Info: cfl dt = 0.0015651572769903351 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7686e+04 | 11520 |      1 | 4.161e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.541692720542052 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.828172340594717, dt = 0.0015651572769903351 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.8%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.91 us    (0.6%)
   LB compute        : 310.84 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.230381944444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.809693827546119e-27,-2.0395778503849515e-27,2.012370248714249e-17)
    sum a = (3.879791949988543e-27,-2.9431359752740617e-25,-2.0110354304777882e-17)
    sum e = 1.2368652697321884e-09
    sum de = -2.9826657754476156e-14
Info: cfl dt = 0.001565160584247555 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0292e+04 | 11520 |      1 | 3.803e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.816235354934008 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.829737497871707, dt = 0.001565160584247555 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (1.8%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.21 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.4%)
   LB compute        : 326.79 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.230381944444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.865168958198323e-27,-2.838246371993406e-27,2.0092271601578904e-17)
    sum a = (3.736666112905856e-25,4.968699420778e-26,-2.0051327809042606e-17)
    sum e = 1.2368652233956553e-09
    sum de = -2.938205235644735e-14
Info: cfl dt = 0.0015651639695541271 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9192e+04 | 11520 |      1 | 3.946e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.27822820637059 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.831302658455955, dt = 0.0015651639695541271 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.7%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 312.83 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.230381944444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.996983163491325e-27,-2.481645297769705e-27,2.0060934178772133e-17)
    sum a = (2.907734173928791e-25,9.213916457959611e-26,-1.999088087128401e-17)
    sum e = 1.2368651777558593e-09
    sum de = -2.893631778794262e-14
Info: cfl dt = 0.0015651674379101163 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0448e+04 | 11520 |      1 | 3.784e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.892377950149731 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.832867822425508, dt = 0.0015651674379101163 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.6%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 332.03 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.230642361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.616978518523725e-27,-2.3023912818497696e-27,2.002969240761273e-17)
    sum a = (-7.63003213392586e-26,1.1999920859259136e-26,-1.9929051411698233e-17)
    sum e = 1.2368651328144954e-09
    sum de = -2.8489547916309065e-14
Info: cfl dt = 0.0015651709945494754 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0387e+04 | 11520 |      1 | 3.791e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.862968989243766 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.834432989863418, dt = 0.0015651709945494754 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (2.1%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.33 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.55 us    (0.5%)
   LB compute        : 270.58 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (73.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.23046875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.0316551201489524e-27,-2.3583864918518385e-27,1.99985484211056e-17)
    sum a = (-7.216378355022033e-26,8.34875579147099e-26,-1.98658798974265e-17)
    sum e = 1.2368650885731105e-09
    sum de = -2.8041836222717718e-14
Info: cfl dt = 0.0015651746448059362 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0423e+04 | 11520 |      1 | 3.787e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.88049926099379 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.835998160857968, dt = 0.0015651746448059362 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.0%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 299.44 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.23046875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.141218503187056e-27,-2.166650571535157e-27,1.9967504286700685e-17)
    sum a = (-3.84329971560639e-25,2.5834568980980793e-25,-1.9801405434786687e-17)
    sum e = 1.236865045033107e-09
    sum de = -2.7593275449360986e-14
Info: cfl dt = 0.001565178393978639 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0344e+04 | 11520 |      1 | 3.796e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.841820901766777 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.837563335502773, dt = 0.001565178393978639 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.7%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 941.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 323.61 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.23046875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.0066305413614445e-27,-1.647958099937046e-27,1.993656201165603e-17)
    sum a = (-6.804891573409307e-26,-1.286681945757522e-25,-1.9735667548225577e-17)
    sum e = 1.2368650021957407e-09
    sum de = -2.7143957975153512e-14
Info: cfl dt = 0.0015651822472007944 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8393e+04 | 11520 |      1 | 4.057e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.887713627235255 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.839128513896752, dt = 0.0015651822472007944 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (1.9%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 316.29 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.230208333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.865168958198323e-27,-2.141686762741665e-27,1.9905723540940106e-17)
    sum a = (-3.4596094416460844e-25,1.6928829875777926e-25,-1.9668706980155793e-17)
    sum e = 1.2368649600621248e-09
    sum de = -2.669397527831334e-14
Info: cfl dt = 0.0015651862093147423 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0378e+04 | 11520 |      1 | 3.792e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.858238505413045 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.840693696143953, dt = 0.0015651862093147423 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (2.2%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.5%)
   LB compute        : 269.74 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.230208333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.632112639465049e-27,-1.6321823596578254e-27,1.9874990754804117e-17)
    sum a = (-1.7675416784492041e-26,-1.8704723161787035e-25,-1.9600563352637463e-17)
    sum e = 1.2368649186332298e-09
    sum de = -2.6243418919273084e-14
Info: cfl dt = 0.0015651902847567672 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9840e+04 | 11520 |      1 | 3.861e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.595493619598658 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.842258882353268, dt = 0.0015651902847567672 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (2.0%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 299.20 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.230208333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.410212116856231e-27,-2.215538030422412e-27,1.9844365472166645e-17)
    sum a = (-2.8768102557858526e-25,-2.4271886558443184e-25,-1.9531277235931402e-17)
    sum e = 1.2368648779098825e-09
    sum de = -2.579237901489748e-14
Info: cfl dt = 0.0015651944774542396 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0238e+04 | 11520 |      1 | 3.810e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.790304698973323 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.843824072638025, dt = 0.0015651944774542396 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.6%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 1.20 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 328.59 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.230208333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.042628606291361e-27,-2.629521192914487e-27,1.9813849447880125e-17)
    sum a = (1.6852789940833166e-25,1.0016593924556604e-25,-1.9460888489130478e-17)
    sum e = 1.2368648378927686e-09
    sum de = -2.5340945407655484e-14
Info: cfl dt = 0.0015651987907383546 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0307e+04 | 11520 |      1 | 3.801e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.824054129064914 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.845389267115479, dt = 0.0015651987907383546 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.9%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.5%)
   LB compute        : 272.84 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (72.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.229774305555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.436562803916028e-27,-2.210337236923768e-27,1.978344437479105e-17)
    sum a = (-3.7078086433797123e-25,2.856902485071959e-25,-1.9389437579855775e-17)
    sum e = 1.236864798582438e-09
    sum de = -2.4889207561669333e-14
Info: cfl dt = 0.0015652032272737808 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0349e+04 | 11520 |      1 | 3.796e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.844565555259324 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.846954465906218, dt = 0.0015652032272737808 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.9%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 292.31 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.229774305555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.444823303519843e-27,-1.6106857465300962e-27,1.975315188193565e-17)
    sum a = (7.939912746553408e-26,1.6925917431418685e-25,-1.9316965127548544e-17)
    sum e = 1.2368647599792937e-09
    sum de = -2.4437253783299572e-14
Info: cfl dt = 0.0015652077890067591 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0173e+04 | 11520 |      1 | 3.818e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.758534599661797 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.848519669133491, dt = 0.0015652077890067591 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (2.0%)
   patch tree reduce : 1.90 us    (0.7%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.56 us    (0.5%)
   LB compute        : 264.54 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.229774305555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.956642153780444e-27,-1.4524082643880257e-27,1.972297353472503e-17)
    sum a = (1.8445758317511215e-25,4.235877278856962e-25,-1.9243510797075596e-17)
    sum e = 1.2368647220836075e-09
    sum de = -2.398517272149417e-14
Info: cfl dt = 0.0015652124771338592 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0488e+04 | 11520 |      1 | 3.779e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.912286482433178 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.850084876922498, dt = 0.0015652124771338592 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.0%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.59 us    (0.5%)
   LB compute        : 291.71 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2295138888888895
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.584958778410675e-27,-5.710471261511288e-28,1.9692910837214106e-17)
    sum a = (5.200855908166143e-25,2.0468082535464413e-25,-1.916911549735574e-17)
    sum e = 1.2368646848955117e-09
    sum de = -2.3533050963719714e-14
Info: cfl dt = 0.0015652172920905033 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0443e+04 | 11520 |      1 | 3.784e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.890363828152802 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.851650089399632, dt = 0.0015652172920905033 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.9%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 275.89 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2295138888888895
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.50041997416008e-27,-4.30105622337872e-28,1.9662965228396563e-17)
    sum a = (3.250027865237722e-26,-2.5677218973679316e-25,-1.9093819227471953e-17)
    sum e = 1.2368646484150018e-09
    sum de = -2.308097559820318e-14
Info: cfl dt = 0.0015652222335599871 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8766e+04 | 11520 |      1 | 4.005e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.070105973406076 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.853215306691722, dt = 0.0015652222335599871 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.8%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 1.57 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 285.35 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2295138888888895
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.8263363667417806e-27,-1.1937554677221228e-27,1.9633138085487594e-17)
    sum a = (3.5430180341795066e-25,9.952910208165706e-26,-1.9017662405385712e-17)
    sum e = 1.2368646126419378e-09
    sum de = -2.262903264091079e-14
Info: cfl dt = 0.0015652273005021247 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0421e+04 | 11520 |      1 | 3.787e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.879922136865266 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.854780528925282, dt = 0.0015652273005021247 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.8%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 306.19 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2295138888888895
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.0316551201489524e-27,-7.561953747028609e-28,1.9603430722301246e-17)
    sum a = (-1.32339218006716e-25,1.7339423854506718e-25,-1.8940685147062968e-17)
    sum e = 1.2368645775760479e-09
    sum de = -2.2177307021785876e-14
Info: cfl dt = 0.0015652324912005847 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7219e+04 | 11520 |      1 | 4.232e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.313739071643482 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.856345756225784, dt = 0.0015652324912005847 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (1.9%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 309.65 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.2295138888888895
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.62801277466015e-27,-4.1762371794112605e-28,1.9573844389931397e-17)
    sum a = (-6.903533290100258e-26,4.753359699167722e-25,-1.886292833500008e-17)
    sum e = 1.236864543216928e-09
    sum de = -2.1725883456886526e-14
Info: cfl dt = 0.0015652378033267865 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0398e+04 | 11520 |      1 | 3.790e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.868494868566684 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.857910988716985, dt = 0.0015652378033267865 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (1.9%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.56 us    (0.5%)
   LB compute        : 312.12 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.229340277777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.6862616618449646e-27,5.386288466762468e-28,1.9544380275138786e-17)
    sum a = (3.1606921017136785e-25,3.4753782475339736e-26,-1.8784432060023052e-17)
    sum e = 1.236864509564039e-09
    sum de = -2.1274845814617197e-14
Info: cfl dt = 0.0015652432340190947 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7438e+04 | 11520 |      1 | 4.199e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.420748433869841 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.859476226520312, dt = 0.0015652432340190947 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (1.8%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 317.53 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.229340277777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.9068360761814926e-27,2.5397208251712314e-28,1.951503950263662e-17)
    sum a = (-2.269088867480118e-25,2.1968524461807e-25,-1.870523580977508e-17)
    sum e = 1.2368644766167164e-09
    sum de = -2.0824277313947468e-14
Info: cfl dt = 0.001565248779973988 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0384e+04 | 11520 |      1 | 3.792e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.861810445487365 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.861041469754331, dt = 0.001565248779973988 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (2.3%)
   patch tree reduce : 1.89 us    (0.7%)
   gen split merge   : 1.03 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.5%)
   LB compute        : 262.79 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.229340277777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.7001304445080154e-27,7.234303756614026e-28,1.948582313586512e-17)
    sum a = (5.187285304330348e-25,6.781627557290955e-25,-1.862538189435541e-17)
    sum e = 1.2368644443741606e-09
    sum de = -2.037426021947997e-14
Info: cfl dt = 0.0015652544375469415 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9462e+04 | 11520 |      1 | 3.910e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.411061258616195 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.8626067185343045, dt = 0.0015652544375469415 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (1.9%)
   patch tree reduce : 2.27 us    (0.7%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 307.46 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (61.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.229340277777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.288288369409414e-27,2.184159909647259e-27,1.9456732169815827e-17)
    sum a = (-4.132557448413981e-25,2.271659793066281e-25,-1.854490870398711e-17)
    sum e = 1.2368644128354484e-09
    sum de = -1.9924876057085387e-14
Info: cfl dt = 0.0015652602028599582 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0135e+04 | 11520 |      1 | 3.823e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.740478265490726 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.864171972971851, dt = 0.0015652602028599582 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (1.8%)
   patch tree reduce : 2.30 us    (0.7%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 300.75 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.229340277777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.6529765834536414e-27,2.171678005250513e-27,1.9427767542756967e-17)
    sum a = (2.1496439767945905e-25,-8.904191869137021e-28,-1.8463857059360637e-17)
    sum e = 1.236864381999528e-09
    sum de = -1.9476206042873114e-14
Info: cfl dt = 0.0015652660719125138 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0355e+04 | 11520 |      1 | 3.795e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.848034589167803 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.865737233174711, dt = 0.0015652660719125138 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (1.9%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 318.48 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.229340277777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.8374921628662376e-27,1.9925973491138657e-27,1.939893012719723e-17)
    sum a = (9.635787490591296e-26,-2.0643379614330798e-25,-1.838226626370598e-17)
    sum e = 1.2368643518652207e-09
    sum de = -1.9028329877702635e-14
Info: cfl dt = 0.0015652720406928472 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0247e+04 | 11520 |      1 | 3.809e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.795090776477007 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.867302499246623, dt = 0.0015652720406928472 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.8%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 316.48 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.229166666666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.797272693143389e-27,1.5177649026876539e-27,1.937022073536742e-17)
    sum a = (-2.6087457564852366e-25,-9.373403124590116e-26,-1.8300176236715997e-17)
    sum e = 1.2368643224312257e-09
    sum de = -1.8581327360807215e-14
Info: cfl dt = 0.001565278105286618 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7527e+04 | 11520 |      1 | 4.185e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.464684974366646 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.868867771287316, dt = 0.001565278105286618 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (2.0%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 301.04 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.229166666666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.4726824088339774e-27,1.4496345078554155e-27,1.9341640116825315e-17)
    sum a = (4.185258822533575e-25,5.761504914515649e-25,-1.8217627552043122e-17)
    sum e = 1.236864293696116e-09
    sum de = -1.8135276522045586e-14
Info: cfl dt = 0.0015652842619794684 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6515e+04 | 11520 |      1 | 4.345e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.969784673060232 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.870433049392602, dt = 0.0015652842619794684 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.9%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 308.45 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.229166666666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.30077027380616e-27,2.8694511329852712e-27,1.931318895691553e-17)
    sum a = (-2.192855636376992e-25,-1.8506000842203842e-25,-1.813465856325418e-17)
    sum e = 1.236864265658344e-09
    sum de = -1.7690255410762413e-14
Info: cfl dt = 0.0015652905073512888 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7953e+04 | 11520 |      1 | 4.121e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.673428527500667 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.871998333654582, dt = 0.0015652905073512888 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (2.1%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.64 us    (0.5%)
   LB compute        : 301.47 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (71.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.229166666666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.130123477056615e-27,1.984449439299323e-27,1.9284867883084677e-17)
    sum a = (-3.267495597001835e-25,-1.9137403176906737e-25,-1.8051310866646446e-17)
    sum e = 1.2368642383162425e-09
    sum de = -1.7246340791765742e-14
Info: cfl dt = 0.0015652968383594282 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0439e+04 | 11520 |      1 | 3.785e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.889333364003011 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.873563624161933, dt = 0.0015652968383594282 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.8%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 313.83 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.229166666666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.720933618502592e-27,1.6821099772448094e-27,1.925667745496033e-17)
    sum a = (-2.0310069426991857e-25,8.827393485140377e-26,-1.7967621659688495e-17)
    sum e = 1.2368642116680223e-09
    sum de = -1.6803608803174675e-14
Info: cfl dt = 0.0015653032524086485 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8507e+04 | 11520 |      1 | 4.041e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.944351258969022 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.875128921000292, dt = 0.0015653032524086485 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.8%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.61 us    (0.5%)
   LB compute        : 313.61 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.229166666666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.949768532442935e-27,2.0406180090846803e-27,1.9228618177556868e-17)
    sum a = (3.3208314679282635e-25,-1.685126437474023e-25,-1.7883631275064736e-17)
    sum e = 1.2368641857117773e-09
    sum de = -1.6362134849586143e-14
Info: cfl dt = 0.0015653097474062226 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0213e+04 | 11520 |      1 | 3.813e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.779003450551691 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.8766942242527005, dt = 0.0015653097474062226 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.6%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 332.27 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.229166666666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.030268241882648e-27,1.5713330757236888e-27,1.9200690490372553e-17)
    sum a = (-1.9693324661965976e-25,-6.244835457518646e-26,-1.7799379114740133e-17)
    sum e = 1.236864160445483e-09
    sum de = -1.5921993396247598e-14
Info: cfl dt = 0.0015653163218009947 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5574e+04 | 11520 |      1 | 4.505e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.509919160205568 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.878259534000107, dt = 0.0015653163218009947 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.9%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 262.53 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.229166666666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.741736792497169e-27,1.5546905365280275e-27,1.9172894772120146e-17)
    sum a = (2.920911251056522e-25,5.521439753813902e-26,-1.7714903663701403e-17)
    sum e = 1.236864135867e-09
    sum de = -1.548325836645529e-14
Info: cfl dt = 0.0015653229746054012 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0442e+04 | 11520 |      1 | 3.784e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.890900581772977 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.879824850321908, dt = 0.0015653229746054012 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (2.1%)
   patch tree reduce : 1.88 us    (0.7%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.5%)
   LB compute        : 257.76 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.229166666666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.9040623196488825e-27,1.7223294469676577e-27,1.9145231341835048e-17)
    sum a = (-2.9891075226064103e-25,7.642704734084223e-26,-1.763024375273463e-17)
    sum e = 1.2368641119740743e-09
    sum de = -1.504600211275739e-14
Info: cfl dt = 0.0015653297054003157 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0452e+04 | 11520 |      1 | 3.783e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.896059208345195 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.881390173296514, dt = 0.0015653297054003157 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.9%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 293.81 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.229427083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.836044514605916e-27,1.8533894431334902e-27,1.911770045762085e-17)
    sum a = (4.736081796366309e-25,-2.447035750634061e-25,-1.754543804705033e-17)
    sum e = 1.2368640887643388e-09
    sum de = -1.461029691693341e-14
Info: cfl dt = 0.0015653365143230842 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0346e+04 | 11520 |      1 | 3.796e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.844376429036348 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.882955503001914, dt = 0.0015653365143230842 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (2.1%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1.06 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.5%)
   LB compute        : 265.34 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (63.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.229253472222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.4866119614910445e-27,1.2124783243172417e-27,1.909030231721241e-17)
    sum a = (-4.522346519550363e-25,4.835237091415252e-25,-1.7460525306557473e-17)
    sum e = 1.236864066235314e-09
    sum de = -1.4176213869362702e-14
Info: cfl dt = 0.0015653434020388773 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0453e+04 | 11520 |      1 | 3.783e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.896382855577345 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.884520839516237, dt = 0.0015653434020388773 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.6%)
   patch tree reduce : 2.43 us    (0.7%)
   gen split merge   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.4%)
   LB compute        : 342.56 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.229253472222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.920644088850528e-27,2.5470019360693332e-27,1.9063037057624295e-17)
    sum a = (-2.366267427600117e-25,-4.198031104567328e-25,-1.7375543827597862e-17)
    sum e = 1.236864044384409e-09
    sum de = -1.3743823274422557e-14
Info: cfl dt = 0.0015653503696972356 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8725e+04 | 11520 |      1 | 4.011e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.051180941125795 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.886086182918276, dt = 0.0015653503696972356 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.9%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 269.18 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.229253472222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.121741437464769e-27,1.1980894623043263e-27,1.903590475624916e-17)
    sum a = (-3.2862357895752826e-25,-3.154663515249833e-25,-1.7290530895452687e-17)
    sum e = 1.236864023208924e-09
    sum de = -1.3313194185337415e-14
Info: cfl dt = 0.0015653574188747319 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0326e+04 | 11520 |      1 | 3.799e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.83468625297272 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.887651533287973, dt = 0.0015653574188747319 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.86 us    (2.0%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 324.37 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.229253472222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.709777822378135e-27,7.75091591081268e-28,1.9008905432970683e-17)
    sum a = (-1.0506608354004274e-25,-1.0269356822585292e-26,-1.720552447514235e-17)
    sum e = 1.2368640027060546e-09
    sum de = -1.2884395284863306e-14
Info: cfl dt = 0.0015653645515064144 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0309e+04 | 11520 |      1 | 3.801e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.826368349184255 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.889216890706847, dt = 0.0015653645515064144 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.9%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 299.07 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.229253472222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.7042303093129146e-27,1.008953938736967e-27,1.898203904760961e-17)
    sum a = (-3.4527513286192056e-25,-1.6822473648730652e-25,-1.7120562605299966e-17)
    sum e = 1.2368639828728861e-09
    sum de = -1.245749443099896e-14
Info: cfl dt = 0.0015653717698071938 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0150e+04 | 11520 |      1 | 3.821e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.748666518140668 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.890782255258354, dt = 0.0015653717698071938 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (2.0%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 284.61 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.229253472222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.4392757904546226e-27,6.3432344705129935e-28,1.895530550034122e-17)
    sum a = (-3.3422448683600144e-25,-8.875141103452512e-26,-1.7035682521445538e-17)
    sum e = 1.2368639637063987e-09
    sum de = -1.2032557794401832e-14
Info: cfl dt = 0.0015653790761867464 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0434e+04 | 11520 |      1 | 3.785e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.887433145254736 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.892347627028161, dt = 0.0015653790761867464 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (2.1%)
   patch tree reduce : 1.90 us    (0.7%)
   gen split merge   : 1.04 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 266.71 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.229253472222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.930230696726632e-27,5.393222858093994e-28,1.8928704633844278e-17)
    sum a = (-3.9799488311854326e-25,6.866720340119022e-26,-1.6950920380087665e-17)
    sum e = 1.2368639452034708e-09
    sum de = -1.160965157463821e-14
Info: cfl dt = 0.0015653864731599101 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0217e+04 | 11520 |      1 | 3.812e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.781576301010508 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.893913006104348, dt = 0.0015653864731599101 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (1.9%)
   patch tree reduce : 2.19 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.4%)
   LB compute        : 319.29 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.229253472222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.626443586411796e-27,7.468339464053013e-28,1.8902236234783626e-17)
    sum a = (4.1289238273562614e-25,-1.9442473055548038e-25,-1.6866314364100005e-17)
    sum e = 1.2368639273608785e-09
    sum de = -1.1188840499504425e-14
Info: cfl dt = 0.0015653939632549083 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7256e+04 | 11520 |      1 | 4.227e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.333384494426936 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.895478392577507, dt = 0.0015653939632549083 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.8%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 319.61 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.229253472222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.307522355155637e-27,2.735617380286828e-28,1.887590002863642e-17)
    sum a = (-2.0806467830459114e-25,-2.3887357223131765e-25,-1.6781900457187516e-17)
    sum e = 1.2368639101752964e-09
    sum de = -1.077018878113924e-14
Info: cfl dt = 0.0015654015489233839 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0378e+04 | 11520 |      1 | 3.792e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.860536497112161 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.897043786540762, dt = 0.0015654015489233839 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.7%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 334.64 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.229253472222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.159065610666974e-27,-1.426751016461381e-28,1.8849695686193124e-17)
    sum a = (4.481787264652271e-25,1.7616400780266178e-25,-1.669771497390155e-17)
    sum e = 1.2368638936432986e-09
    sum de = -1.0353759265551743e-14
Info: cfl dt = 0.0015654092324536321 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0352e+04 | 11520 |      1 | 3.796e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.847646881002333 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.898609188089686, dt = 0.0013908119103147598 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (1.9%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 325.25 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.229253472222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.0121172844326484e-27,4.148499614085158e-28,1.8826538197407925e-17)
    sum a = (6.800696266653734e-26,2.644215601545448e-25,-1.6623210541590782e-17)
    sum e = 1.2368638795685218e-09
    sum de = -9.98592973823159e-15
Info: cfl dt = 0.0015654161533508483 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7572e+04 | 11520 |      1 | 4.178e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.98363964852852 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 2835                                                    [SPH][rank=0]
Info: time since start : 1284.800264745 (s)                                           [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[-2.51014617e-37 -6.10660520e-21 -1.81163673e-15 ...  1.99004941e-10
 -1.05222592e-14 -2.86135309e-12]
(11520, 3)
[[-2.51014617e-37 -6.10660520e-21 -1.81163673e-15  2.96848027e-12
  -1.75596499e-14]
 [-3.06598227e-28 -2.44943001e-46 -1.99264878e-27 -2.55559297e-12
  -3.63791544e-12]
 [ 2.07958665e-05  1.02879326e-05 -5.18803569e-21  1.19825559e-08
   1.81095294e-09]
 ...
 [ 3.19617259e-05  2.91559405e-05 -1.08536669e-09  3.21148266e-09
  -1.09611109e-12]
 [ 6.50743266e-06 -2.10079863e-31 -2.50038924e-29  1.00844911e-08
   2.70277234e-10]
 [-5.58645572e-69 -6.01639167e-40  1.99004941e-10 -1.05222592e-14
  -2.86135309e-12]]
compute original rho
Info: Dumping state to _to_trash/dusty_settle/dump/0000049.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.92 us   (71.8%)
Info: dump to _to_trash/dusty_settle/dump/0000049.sham                      [Shamrock Dump][rank=0]
              - took 1.27 ms, bandwidth = 2.32 GB/s
Info: evolve_until (target_time = 5.00s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 4.9, dt = 0.0015654161533508483 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.55 us    (1.0%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 342.63 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.228993055555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.146644476264244e-27,8.98870476348999e-28,1.8800567765925835e-17)
    sum a = (1.4667520528572863e-25,9.745896956946757e-26,-1.6539484298805965e-17)
    sum e = 1.2368638641927523e-09
    sum de = -9.573642557823931e-15
Info: cfl dt = 0.0015654240162596405 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7879e+04 | 11520 |      1 | 4.132e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.638416296229776 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.9015654161533515, dt = 0.0015654240162596405 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (1.7%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1.10 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 349.12 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (56.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.229253472222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.8609475534053915e-27,9.18980211210423e-28,1.8774741993198762e-17)
    sum a = (-1.2793952006664633e-28,5.425970521157123e-26,-1.645615941090499e-17)
    sum e = 1.2368638495286373e-09
    sum de = -9.163971859799448e-15
Info: cfl dt = 0.0015654319928118832 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0311e+04 | 11520 |      1 | 3.801e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.827792784713623 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.903130840169611, dt = 0.0015654319928118832 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (1.8%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.63 us    (0.5%)
   LB compute        : 321.87 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.229253472222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.9746715712424105e-27,9.794827755779833e-28,1.8749046214133214e-17)
    sum a = (1.45567782990084e-25,3.7120477234805655e-25,-1.6373201878503018e-17)
    sum e = 1.236863835503712e-09
    sum de = -8.75676589701055e-15
Info: cfl dt = 0.0015654400731478565 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0448e+04 | 11520 |      1 | 3.784e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.894961902725782 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.904696272162423, dt = 0.0015654400731478565 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (2.1%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 278.32 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.229253472222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.636273274263964e-27,1.8050220635960998e-27,1.872347987997752e-17)
    sum a = (2.56128331501661e-25,1.9720273440278116e-25,-1.6290645916695078e-17)
    sum e = 1.236863822114241e-09
    sum de = -8.352077977657115e-15
Info: cfl dt = 0.0015654482578205953 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0585e+04 | 11520 |      1 | 3.767e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.962359160307388 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.906261712235571, dt = 0.0015654482578205953 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (2.0%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 280.91 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.229253472222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.1578002723887014e-27,1.971620815336001e-27,1.869804233490538e-17)
    sum a = (3.949863974393609e-26,-4.568814742661833e-25,-1.6208527143951044e-17)
    sum e = 1.2368638093562482e-09
    sum de = -7.949964996859414e-15
Info: cfl dt = 0.001565456546857518 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8875e+04 | 11520 |      1 | 3.990e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.125908061066411 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.907827160493391, dt = 0.001565456546857518 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (1.9%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 328.52 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.229253472222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.2632030206278895e-27,7.348721213584198e-28,1.8672732866345674e-17)
    sum a = (-4.762602376013729e-25,-4.9120281076211074e-26,-1.61268775211035e-17)
    sum e = 1.2368637972256618e-09
    sum de = -7.550484188479347e-15
Info: cfl dt = 0.0015654649397967653 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0444e+04 | 11520 |      1 | 3.784e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.893540192233019 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.909392617040249, dt = 0.0015654649397967653 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.7%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 311.07 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.229253472222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.419859494726351e-27,1.002539626755306e-27,1.8647550714429884e-17)
    sum a = (5.56998049313458e-26,-1.3577884946693596e-25,-1.6045733097670667e-17)
    sum e = 1.2368637857183239e-09
    sum de = -7.153690941162279e-15
Info: cfl dt = 0.0015654734356804333 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7413e+04 | 11520 |      1 | 4.202e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.410806553407548 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.910958081980046, dt = 0.0015654734356804333 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (1.8%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 327.87 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (63.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.228993055555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.9164226840575964e-27,7.069611962490295e-28,1.8622495059884633e-17)
    sum a = (1.610078987288588e-25,-6.756004114522052e-26,-1.5965126517389892e-17)
    sum e = 1.2368637748299877e-09
    sum de = -6.759640412803815e-15
Info: cfl dt = 0.0015654820330758474 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6640e+04 | 11520 |      1 | 4.324e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.032790865484198 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.912523555415726, dt = 0.0015654820330758474 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (2.0%)
   patch tree reduce : 2.27 us    (0.7%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 319.57 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.63 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.228993055555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.568316239215014e-27,6.561667797456048e-28,1.8597565034906904e-17)
    sum a = (1.3029027872803348e-26,-6.006418081557051e-26,-1.588509176980299e-17)
    sum e = 1.2368637645563255e-09
    sum de = -6.36838634221584e-15
Info: cfl dt = 0.001565490730107178 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5888e+04 | 11520 |      1 | 4.450e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.664610350026877 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.914089037448802, dt = 0.001565490730107178 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (1.7%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 1.43 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 343.29 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.228993055555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.6681714743889814e-27,5.6255249677001e-28,1.8572759717523607e-17)
    sum a = (-2.3342929491704527e-25,-2.9990397379904457e-25,-1.580566042600167e-17)
    sum e = 1.2368637548929214e-09
    sum de = -5.979981634265439e-15
Info: cfl dt = 0.0015654995244992356 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9296e+04 | 11520 |      1 | 3.932e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.33194493196099 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.9156545281789095, dt = 0.0015654995244992356 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (2.0%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 286.96 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.228993055555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.231244050508856e-27,-7.645166443006915e-29,1.8548078138107123e-17)
    sum a = (9.595741380651736e-26,9.897552095367221e-26,-1.5726865927539564e-17)
    sum e = 1.2368637458352804e-09
    sum de = -5.594478220578506e-15
Info: cfl dt = 0.0015655084136320882 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6634e+04 | 11520 |      1 | 4.325e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.029953217365607 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.917220027703409, dt = 0.0015655084136320882 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.9%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.5%)
   LB compute        : 268.02 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.228993055555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.819341205416238e-27,3.843386395498034e-28,1.852351927356567e-17)
    sum a = (5.060233386354137e-26,-4.530929562420959e-25,-1.5648740405021876e-17)
    sum e = 1.2368637373788248e-09
    sum de = -5.211927293864258e-15
Info: cfl dt = 0.0015655173946044082 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0429e+04 | 11520 |      1 | 3.786e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.88675450403925 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.918785536117041, dt = 0.0015655173946044082 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (2.0%)
   patch tree reduce : 1.74 us    (0.6%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 292.88 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.228993055555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.7735742226281696e-27,-7.6191624755136945e-28,1.8499082051319503e-17)
    sum a = (6.010272736338463e-25,3.7987583864861686e-25,-1.5571315427491203e-17)
    sum e = 1.2368637295189007e-09
    sum de = -4.832378831655364e-15
Info: cfl dt = 0.0015655264643042372 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0434e+04 | 11520 |      1 | 3.785e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.889219277452982 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.920351053511646, dt = 0.0015655264643042372 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (1.7%)
   patch tree reduce : 1.94 us    (0.5%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 350.76 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.228993055555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.417207278181773e-27,4.755258855593643e-28,1.8474765350032467e-17)
    sum a = (3.6430206251692693e-25,8.495669539818522e-27,-1.5494622101832383e-17)
    sum e = 1.2368637222507734e-09
    sum de = -4.455882083411617e-15
Info: cfl dt = 0.0015655356194842502 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8283e+04 | 11520 |      1 | 4.073e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.836719714488208 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.92191657997595, dt = 0.0015655356194842502 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (1.9%)
   patch tree reduce : 1.92 us    (0.5%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 334.24 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.228993055555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.023333850551122e-27,2.097653377786478e-28,1.845056799993446e-17)
    sum a = (-4.8783443017282216e-27,-1.6074031790335354e-25,-1.5418691986575474e-17)
    sum e = 1.2368637155696343e-09
    sum de = -4.0824846755429335e-15
Info: cfl dt = 0.001565544856839708 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0265e+04 | 11520 |      1 | 3.806e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.806654121913287 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.9234821155954345, dt = 0.001565544856839708 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.9%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 300.62 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.228993055555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-4.304870138611059e-27,-1.9121584096681694e-28,1.8426488781642584e-17)
    sum a = (2.49928292212144e-25,1.0398999602522744e-25,-1.5343554980864907e-17)
    sum e = 1.2368637094706003e-09
    sum de = -3.712234579986917e-15
Info: cfl dt = 0.0015655541730866891 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9596e+04 | 11520 |      1 | 3.892e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.479450076344033 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.925047660452274, dt = 0.0015655541730866891 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (2.0%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 289.88 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.228732638888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.725155023295523e-27,1.9658999424874924e-28,1.8402526430269772e-17)
    sum a = (1.2948242213791076e-26,4.0937968012675025e-25,-1.526924111866944e-17)
    sum e = 1.236863703948712e-09
    sum de = -3.34517726440957e-15
Info: cfl dt = 0.0015655635650383632 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7874e+04 | 11520 |      1 | 4.133e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.636911041107629 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.926613214625361, dt = 0.0015655635650383632 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.6%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.71 us    (0.5%)
   LB compute        : 324.13 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.228732638888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-3.895741050051052e-27,1.0682429846215105e-27,1.837867963392072e-17)
    sum a = (3.9254653184936364e-25,2.5001488542389644e-25,-1.519578093969617e-17)
    sum e = 1.2368636989989441e-09
    sum de = -2.981358493641717e-15
Info: cfl dt = 0.0015655730296771572 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0384e+04 | 11520 |      1 | 3.791e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.865144393126101 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.928178778190399, dt = 0.0015655730296771572 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (1.7%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 334.28 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.228732638888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.9901095421538156e-27,1.3270691410707015e-27,1.835494703244161e-17)
    sum a = (3.101201958480521e-25,2.1659397964236755e-26,-1.5123203020222283e-17)
    sum e = 1.236863694616196e-09
    sum de = -2.620822369028889e-15
Info: cfl dt = 0.001565582564220792 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6285e+04 | 11520 |      1 | 4.383e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.859717946130395 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.9297443512200765, dt = 0.001565582564220792 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (1.8%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.4%)
   LB compute        : 340.72 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.228732638888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.551856010001401e-27,1.1786731665760548e-27,1.8331327222448937e-17)
    sum a = (2.0412421043045175e-26,1.179885384860697e-25,-1.5051536486877788e-17)
    sum e = 1.2368636907952997e-09
    sum de = -2.2636120071912033e-15
Info: cfl dt = 0.0015655921661805522 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9696e+04 | 11520 |      1 | 3.879e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.528551797196739 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.931309933784298, dt = 0.0015655921661805522 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (2.0%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 290.41 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.228732638888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.752953358615642e-27,1.4506746665551443e-27,1.8307818754775573e-17)
    sum a = (2.3188465924794796e-25,4.520490703070264e-26,-1.498081103161859e-17)
    sum e = 1.2368636875310231e-09
    sum de = -1.9097696118391017e-15
Info: cfl dt = 0.001565601833410083 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0258e+04 | 11520 |      1 | 3.807e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.803767499749831 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.932875525950478, dt = 0.001565601833410083 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.7%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 314.12 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (62.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.228732638888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.2259396174197002e-27,1.462636491602026e-27,1.828442013321841e-17)
    sum a = (1.0088048493233392e-25,2.0717859311225964e-25,-1.491105290081285e-17)
    sum e = 1.2368636848180657e-09
    sum de = -1.5593369536504148e-15
Info: cfl dt = 0.0015656115641435812 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0232e+04 | 11520 |      1 | 3.811e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.79113063597142 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.934441127783888, dt = 0.0015656115641435812 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 24.38 us   (6.9%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 312.54 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.228732638888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1690776085011907e-27,1.9060908172530847e-27,1.8261129822993473e-17)
    sum a = (4.608502864648902e-25,-1.4547191502992565e-25,-1.4842289887360602e-17)
    sum e = 1.2368636826510637e-09
    sum de = -1.2123543023294842e-15
Info: cfl dt = 0.001565621357022643 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0268e+04 | 11520 |      1 | 3.806e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.808954624332246 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.936006739348032, dt = 0.001565621357022643 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.8%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 321.57 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.228732638888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1663646219625969e-27,1.393986017419923e-27,1.823794624511974e-17)
    sum a = (2.10200470834701e-25,8.050546626253317e-26,-1.4774550039760427e-17)
    sum e = 1.2368636810245919e-09
    sum de = -8.688609527825691e-16
Info: cfl dt = 0.001565631211111142 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9021e+04 | 11520 |      1 | 3.969e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.198867237196422 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.937572360705055, dt = 0.001565631211111142 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (1.9%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.63 us    (0.5%)
   LB compute        : 299.32 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.228732638888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.0401586997288319e-27,1.712968018670098e-27,1.8214867775892842e-17)
    sum a = (-3.802712723142971e-25,-9.02180781410886e-26,-1.4707858836061714e-17)
    sum e = 1.2368636799331612e-09
    sum de = -5.288955685617902e-16
Info: cfl dt = 0.0015656411258980682 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9917e+04 | 11520 |      1 | 3.851e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.637241194735777 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.939137991916166, dt = 0.0015656411258980682 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (2.0%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 285.89 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.228732638888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.083091155990274e-27,1.4397530002079916e-27,1.819189275413981e-17)
    sum a = (1.7345894508417946e-25,-5.4209214174688565e-25,-1.4642243386775657e-17)
    sum e = 1.2368636793712264e-09
    sum de = -1.9249536991633373e-16
Info: cfl dt = 0.001565651101288552 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0510e+04 | 11520 |      1 | 3.776e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.927487292844749 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.940703633042064, dt = 0.001565651101288552 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (2.0%)
   patch tree reduce : 1.99 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.5%)
   LB compute        : 272.99 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (62.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.228732638888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4035208055007707e-27,2.3108859112308885e-28,1.816901947481031e-17)
    sum a = (2.776072619314948e-25,-4.08942596773135e-25,-1.457772887735327e-17)
    sum e = 1.2368636793331819e-09
    sum de = 1.4030327055811883e-16
Info: cfl dt = 0.00156566113758355 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6902e+04 | 11520 |      1 | 4.282e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.162040110809455 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.942269284143353, dt = 0.00156566113758355 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (2.0%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.58 us    (0.5%)
   LB compute        : 266.03 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (63.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.228732638888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.820545773700494e-28,-3.0563329793698847e-28,1.8146246194788366e-17)
    sum a = (1.1313910192820478e-25,-2.2549158383973964e-25,-1.451434116393261e-17)
    sum e = 1.2368636798133674e-09
    sum de = 4.694641623593713e-16
Info: cfl dt = 0.001565671235449225 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0490e+04 | 11520 |      1 | 3.778e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.917723320986642 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.943834945280936, dt = 0.001565671235449225 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.5%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 346.33 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.228732638888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-8.557038903102524e-28,-5.13838397666043e-28,1.8123571130156732e-17)
    sum a = (5.686929002940758e-26,-3.6778512060286056e-25,-1.4452104671836824e-17)
    sum e = 1.2368636808060667e-09
    sum de = 7.949534715466819e-16
Info: cfl dt = 0.0015656813958770202 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0297e+04 | 11520 |      1 | 3.802e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.823717084965017 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.945400616516385, dt = 0.0015656813958770202 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.8%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 304.36 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 us    (62.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.228732638888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-7.932943683265225e-28,-1.203810335152835e-27,1.8100992459725123e-17)
    sum a = (2.622541728039307e-25,-2.8010572312824344e-25,-1.4391042547162698e-17)
    sum e = 1.2368636823055108e-09
    sum de = 1.1167374551617454e-15
Info: cfl dt = 0.0015656916201356949 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0336e+04 | 11520 |      1 | 3.797e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.84265304475522 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.946966297912262, dt = 0.0015656916201356949 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (2.2%)
   patch tree reduce : 1.92 us    (0.7%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.5%)
   LB compute        : 260.16 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.228732638888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-2.1357925301098684e-28,-1.5834682605538586e-27,1.807850832692467e-17)
    sum a = (-4.002319177620934e-25,1.4472425762454974e-25,-1.4331181109695917e-17)
    sum e = 1.2368636843058778e-09
    sum de = 1.4347829452959107e-15
Info: cfl dt = 0.0015657019097178864 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0550e+04 | 11520 |      1 | 3.771e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.947470749832709 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.948531989532397, dt = 0.0015657019097178864 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.9%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.75 us    (0.6%)
   LB compute        : 281.00 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.228732638888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3563669444463968e-27,-1.0155416105019162e-27,1.8056116831602482e-17)
    sum a = (-1.5961027215598982e-25,1.9432296836269026e-25,-1.4272542276752195e-17)
    sum e = 1.2368636868012964e-09
    sum de = 1.7490586145427446e-15
Info: cfl dt = 0.001565712266281837 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0515e+04 | 11520 |      1 | 3.775e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.93019853560837 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.9500976914421155, dt = 0.001565712266281837 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (2.1%)
   patch tree reduce : 1.69 us    (0.6%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.5%)
   LB compute        : 260.02 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.228732638888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.4243239794953473e-27,-6.6171429281082525e-28,1.8033816042475096e-17)
    sum a = (-2.0000587541865871e-25,-4.803626235131034e-27,-1.421514841733668e-17)
    sum e = 1.2368636897858443e-09
    sum de = 2.059534009295524e-15
Info: cfl dt = 0.0015657226915901244 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6921e+04 | 11520 |      1 | 4.279e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.172024368438857 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.951663403708397, dt = 0.0015657226915901244 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (2.0%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1.08 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 280.75 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.228732638888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7460797372781326e-27,-8.446088641798116e-28,1.8011603993202923e-17)
    sum a = (-1.3631279759946343e-26,3.1529117146397067e-26,-1.41590241689134e-17)
    sum e = 1.2368636932535568e-09
    sum de = 2.366178961453975e-15
Info: cfl dt = 0.0015657331874485143 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9170e+04 | 11520 |      1 | 3.949e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.272633289327489 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.953229126399988, dt = 0.0015657331874485143 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (2.0%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 298.84 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (63.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.228732638888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.636516354240029e-27,-7.639965649508271e-28,1.7989478676683957e-17)
    sum a = (4.1536241292791555e-25,1.487751990205895e-26,-1.4104188431454926e-17)
    sum e = 1.2368636971984176e-09
    sum de = 2.6689648975241796e-15
Info: cfl dt = 0.001565743755645623 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0243e+04 | 11520 |      1 | 3.809e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.797733197249498 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.9547948595874365, dt = 0.001565743755645623 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.7%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.57 us    (0.5%)
   LB compute        : 307.05 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.228732638888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-6.657015678264525e-28,-7.3955283550719955e-28,1.7967438060801746e-17)
    sum a = (-2.3099497684011323e-26,1.0488479254666916e-25,-1.405066432401739e-17)
    sum e = 1.2368637016143693e-09
    sum de = 2.967864056888627e-15
Info: cfl dt = 0.0015657543978955016 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0320e+04 | 11520 |      1 | 3.799e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.835412657146605 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.956360603343082, dt = 0.0015657543978955016 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (1.9%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 319.62 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.228732638888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.029063673598391e-27,-4.994495356531275e-28,1.7945480073816042e-17)
    sum a = (-2.742440821357049e-25,4.8689980424117005e-25,-1.3998472399727564e-17)
    sum e = 1.2368637064953108e-09
    sum de = 3.2628498793310564e-15
Info: cfl dt = 0.0015657651157849296 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0391e+04 | 11520 |      1 | 3.791e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.870263959209192 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.957926357740978, dt = 0.0015657651157849296 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (2.0%)
   patch tree reduce : 1.77 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 275.63 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.228732638888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.6781227022291823e-27,5.446964390913316e-28,1.7923602613935025e-17)
    sum a = (-3.3714317214744057e-26,-1.157391519579603e-25,-1.3947632391453832e-17)
    sum e = 1.2368637118351004e-09
    sum de = 3.553895652185438e-15
Info: cfl dt = 0.0015657759107267054 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0258e+04 | 11520 |      1 | 3.807e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.80507998221208 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.959492122856763, dt = 0.0015657759107267054 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.9%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.57 us    (0.5%)
   LB compute        : 308.88 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (63.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.228732638888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.5283398494682305e-27,-8.650653186078119e-29,1.7901803548908247e-17)
    sum a = (1.4535628405447247e-25,-7.14820028624939e-26,-1.389816548373657e-17)
    sum e = 1.2368637176275542e-09
    sum de = 3.840977080288439e-15
Info: cfl dt = 0.0015657867839202221 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7031e+04 | 11520 |      1 | 4.262e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.226508280518177 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.96105789876749, dt = 0.0015657867839202221 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.7%)
   patch tree reduce : 1.88 us    (0.5%)
   gen split merge   : 1.19 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 316.25 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.228732638888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.1511089610332407e-27,-1.8133433331939304e-28,1.7880080712112182e-17)
    sum a = (-2.1183802734764075e-25,2.7926068086460544e-25,-1.3850088844743047e-17)
    sum e = 1.236863723866454e-09
    sum de = 4.1240701406524195e-15
Info: cfl dt = 0.0015657977363203192 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0416e+04 | 11520 |      1 | 3.787e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.8829923265578 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 4.96262368555141, dt = 0.0015657977363203192 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.9%)
   patch tree reduce : 1.98 us    (0.7%)
   gen split merge   : 1.10 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 267.40 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.228732638888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.7557878851422684e-27,5.466033967075012e-28,1.7858431913220167e-17)
    sum a = (1.2533773643905796e-25,2.329945085805586e-25,-1.3803422733383706e-17)
    sum e = 1.2368637305455408e-09
    sum de = 4.40315137670793e-15
Info: cfl dt = 0.0015658087686148525 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0551e+04 | 11520 |      1 | 3.771e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.948995505846177 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.96418948328773, dt = 0.0015658087686148525 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (2.3%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.5%)
   LB compute        : 267.02 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.228732638888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-1.3175343529898537e-27,8.64025159908083e-28,1.78368549277176e-17)
    sum a = (3.893806354869556e-25,-1.1054078549628217e-25,-1.3758185205454254e-17)
    sum e = 1.236863737658522e-09
    sum de = 4.678199209186202e-15
Info: cfl dt = 0.0015658198812120458 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0547e+04 | 11520 |      1 | 3.771e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.946924518391487 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.965755292056345, dt = 0.0015658198812120458 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (2.2%)
   patch tree reduce : 1.95 us    (0.7%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 264.74 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.228732638888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.020499324024495e-28,4.160634798915328e-28,1.7815347504436164e-17)
    sum a = (3.4474465192505886e-25,-2.1338699701132026e-25,-1.3714394572966285e-17)
    sum e = 1.2368637451990704e-09
    sum de = 4.949192159940179e-15
Info: cfl dt = 0.001565831074236631 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0433e+04 | 11520 |      1 | 3.785e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.89130799133062 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.967321111937557, dt = 0.001565831074236631 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (2.2%)
   patch tree reduce : 1.91 us    (0.7%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 264.61 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.228732638888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.802941746196642e-29,1.4908941362779924e-29,1.7793907363367403e-17)
    sum a = (-1.3662276489198263e-25,-5.358407879615154e-26,-1.367206745285566e-17)
    sum e = 1.2368637531608285e-09
    sum de = 5.216110250508631e-15
Info: cfl dt = 0.001565842347535684 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0543e+04 | 11520 |      1 | 3.772e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.945215002809189 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.9688869430117935, dt = 0.001565842347535684 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (2.0%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 941.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 265.29 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (62.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.228732638888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-5.852626283807561e-28,3.5538755574068426e-29,1.7772532199739464e-17)
    sum a = (3.1579426155507285e-25,-6.141981098093793e-26,-1.363121987725103e-17)
    sum e = 1.2368637615374037e-09
    sum de = 5.478933962899239e-15
Info: cfl dt = 0.0015658537006928042 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0449e+04 | 11520 |      1 | 3.783e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.899438858508944 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.970452785359329, dt = 0.0015658537006928042 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (2.1%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1.09 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 270.74 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.228732638888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.676675053968861e-28,-4.3339945822034664e-29,1.775121968410514e-17)
    sum a = (4.912121721904083e-25,-1.3554121654399375e-25,-1.3591869062145125e-17)
    sum e = 1.2368637703223786e-09
    sum de = 5.737645150740592e-15
Info: cfl dt = 0.0015658651330502948 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7919e+04 | 11520 |      1 | 4.126e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.661725540240893 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.972018639060022, dt = 0.0015658651330502948 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (2.1%)
   patch tree reduce : 2.18 us    (0.8%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 261.26 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.228732638888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1663646219625969e-27,-3.247028740986837e-28,1.7729967459039057e-17)
    sum a = (3.2204769565784256e-25,1.8935200659674035e-25,-1.3554030159780228e-17)
    sum e = 1.236863779509305e-09
    sum de = 5.992226193256247e-15
Info: cfl dt = 0.0015658766437382592 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0397e+04 | 11520 |      1 | 3.790e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.874153598111764 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.973584504193072, dt = 0.0015658766437382592 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.7%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 329.83 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.228732638888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.536661119066061e-27,2.5119832598451293e-28,1.770877314505614e-17)
    sum a = (-4.083898824440666e-25,-3.35608331306099e-25,-1.3517718055922099e-17)
    sum e = 1.2368637890917079e-09
    sum de = 6.242660769029533e-15
Info: cfl dt = 0.0015658882317092836 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0178e+04 | 11520 |      1 | 3.817e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.76707255378593 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.97515038083681, dt = 0.0015658882317092836 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.9%)
   patch tree reduce : 1.72 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 283.86 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.228732638888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.30077027380616e-28,-7.142423071471313e-28,1.768763433964012e-17)
    sum a = (2.759076426161379e-25,-1.0620453723689595e-25,-1.3482947912676674e-17)
    sum e = 1.2368637990630868e-09
    sum de = 6.488933198537536e-15
Info: cfl dt = 0.0015658998957778802 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7965e+04 | 11520 |      1 | 4.119e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.68433887871361 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.976716269068519, dt = 0.0015658998957778802 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (2.1%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.5%)
   LB compute        : 279.14 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.228732638888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3161474747235487e-27,-6.998534451342158e-28,1.7666548615959292e-17)
    sum a = (1.4571929944067782e-26,8.753594225394616e-26,-1.3449733986115665e-17)
    sum e = 1.2368638094169192e-09
    sum de = 6.731028438839943e-15
Info: cfl dt = 0.0015659116346619982 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9934e+04 | 11520 |      1 | 3.848e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.647927815441086 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.978282168964297, dt = 0.0015659116346619982 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (2.1%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.59 us    (0.6%)
   LB compute        : 260.24 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.228732638888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.130305787038664e-27,-4.131163635756344e-28,1.764551352583928e-17)
    sum a = (9.422450941276912e-27,-4.1590832288548985e-25,-1.3418089128289491e-17)
    sum e = 1.2368638201466594e-09
    sum de = 6.968933490802343e-15
Info: cfl dt = 0.0015659234470265623 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0246e+04 | 11520 |      1 | 3.809e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.800729808269123 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.979848080598959, dt = 0.0015659234470265623 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (1.9%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (0.4%)
   LB compute        : 314.76 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.228559027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.130305787038664e-27,-1.4487677089389747e-27,1.7624526602027113e-17)
    sum a = (4.946460827777797e-25,1.8540477769105272e-25,-1.3388026592220904e-17)
    sum e = 1.2368638312457405e-09
    sum de = 7.202634456431707e-15
Info: cfl dt = 0.0015659353315265287 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6883e+04 | 11520 |      1 | 4.285e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.15531204884552 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.981414004045986, dt = 0.0015659353315265287 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.7%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 317.65 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (60.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.228559027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2744803567403793e-27,-6.920522548862495e-28,1.7603585355957667e-17)
    sum a = (2.1688903799352397e-25,1.5509659015840818e-25,-1.3359557819735697e-17)
    sum e = 1.2368638427075745e-09
    sum de = 7.43212023199724e-15
Info: cfl dt = 0.0015659472868483643 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0303e+04 | 11520 |      1 | 3.802e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.828719776030535 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.982979939377512, dt = 0.0015659472868483643 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (2.1%)
   patch tree reduce : 1.93 us    (0.7%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.5%)
   LB compute        : 264.71 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.228559027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4131681833708903e-27,-4.748324464262118e-28,1.7582687282752656e-17)
    sum a = (-1.8552062536623502e-25,-1.9041747582482925e-25,-1.3332696724691288e-17)
    sum e = 1.2368638545255587e-09
    sum de = 7.657379045324979e-15
Info: cfl dt = 0.0015659593117483236 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0353e+04 | 11520 |      1 | 3.795e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.85372535718268 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.98454588666436, dt = 0.0015659593117483236 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (2.0%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 279.63 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.228559027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8209711636586084e-27,-1.043972614961171e-27,1.7561829853730116e-17)
    sum a = (1.460368945636617e-25,1.0991807715471116e-25,-1.3307452017491565e-17)
    sum e = 1.2368638666930701e-09
    sum de = 7.878401184154993e-15
Info: cfl dt = 0.0015659714050864767 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0485e+04 | 11520 |      1 | 3.779e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.918326503177056 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.986111845976109, dt = 0.0015659714050864767 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (2.1%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.5%)
   LB compute        : 263.28 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.228559027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.298057287267566e-27,-6.407377590329604e-28,1.754101053046456e-17)
    sum a = (-8.616258605073752e-26,-4.271671740111381e-26,-1.328383697982398e-17)
    sum e = 1.2368638792034728e-09
    sum de = 8.095177042096685e-15
Info: cfl dt = 0.001565983565855292 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0479e+04 | 11520 |      1 | 3.780e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.915620086058148 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.987677817381195, dt = 0.001565983565855292 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (1.8%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 329.32 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.228559027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9763015294847806e-27,-8.2519256845154e-28,1.7520226750339893e-17)
    sum a = (1.6540881018741148e-25,2.1519175903524144e-25,-1.3261859541581947e-17)
    sum e = 1.2368638920501146e-09
    sum de = 8.307698312083747e-15
Info: cfl dt = 0.0015659957932018516 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0415e+04 | 11520 |      1 | 3.788e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.88403101036831 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.989243800947051, dt = 0.0015659957932018516 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.9%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 291.94 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.228559027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4561614096263486e-27,-3.0025914465505614e-28,1.7499475942210005e-17)
    sum a = (-5.419601282719117e-25,-3.935345092543227e-26,-1.3241531090488617e-17)
    sum e = 1.2368639052263333e-09
    sum de = 8.51595737588114e-15
Info: cfl dt = 0.0015660080864431008 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0479e+04 | 11520 |      1 | 3.780e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.915392753728595 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.990809796740253, dt = 0.0015660080864431008 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    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   : 1.45 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 324.22 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.228559027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0318374301310013e-27,-5.330813336110264e-28,1.747875551460965e-17)
    sum a = (2.8125336489361095e-25,3.4235956802658063e-26,-1.322286018716485e-17)
    sum e = 1.2368639187254537e-09
    sum de = 8.719947422734204e-15
Info: cfl dt = 0.0015660204450737606 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0205e+04 | 11520 |      1 | 3.814e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.781878538304525 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.992375804826696, dt = 0.0015660204450737606 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (1.8%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 1.18 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 328.05 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.228559027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.145500677974004e-27,-4.366932941028213e-28,1.745806286457427e-17)
    sum a = (8.475213085390523e-26,-1.0424834544227258e-25,-1.3205855419273732e-17)
    sum e = 1.2368639325407904e-09
    sum de = 8.919662705426668e-15
Info: cfl dt = 0.0015660328687668152 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0272e+04 | 11520 |      1 | 3.806e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.814412560477404 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.9939418252717696, dt = 0.0015660328687668152 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.6%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 325.86 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.228559027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1080549647837662e-27,-7.187496615126229e-28,1.7437395375848853e-17)
    sum a = (3.121793633539486e-26,2.8380461414437083e-25,-1.3190524465887322e-17)
    sum e = 1.2368639466656499e-09
    sum de = 9.115098105183771e-15
Info: cfl dt = 0.0015660453573664943 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8436e+04 | 11520 |      1 | 4.051e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.916081778962345 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.995507858140536, dt = 0.0015660453573664943 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.38 us   (4.3%)
   patch tree reduce : 1.88 us    (0.7%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 261.98 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.228559027777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1136024778489866e-27,4.368666538861094e-29,1.7416750420654828e-17)
    sum a = (-1.5154141440262668e-25,4.894100539031823e-25,-1.3176875080769747e-17)
    sum e = 1.2368639610933325e-09
    sum de = 9.30624967634215e-15
Info: cfl dt = 0.0015660579108743619 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0312e+04 | 11520 |      1 | 3.800e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.83446101815396 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.997073903497903, dt = 0.0015660579108743619 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.85 us    (2.2%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 294.95 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.228559027777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7349847111476918e-27,9.730684635963223e-28,1.739612535891546e-17)
    sum a = (3.6482526234289053e-25,1.8678242454889774e-25,-1.316491364618804e-17)
    sum e = 1.2368639758171298e-09
    sum de = 9.493113982110468e-15
Info: cfl dt = 0.0015660705294290788 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0318e+04 | 11520 |      1 | 3.800e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.83755263479581 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.998639961408777, dt = 0.0013600385912226898 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 11520.0 min = 11520.0 factor = 1
 - strategy "round robin" : max = 10944.0 min = 10944.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 11520
    max = 11520
    avg = 11520
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (2.1%)
   patch tree reduce : 1.74 us    (0.6%)
   gen split merge   : 1.36 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.5%)
   LB compute        : 267.66 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 us    (63.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 5.228559027777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.614265531985131e-27,9.857237277763564e-28,1.7378229934469746e-17)
    sum a = (2.729279346609814e-25,-8.764160504186028e-26,-1.3155913054463625e-17)
    sum e = 1.2368639888738298e-09
    sum de = 9.6513890220275e-15
Info: cfl dt = 0.001566081549049864 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0155e+04 | 11520 |      1 | 3.820e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.816384697586292 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 2899                                                    [SPH][rank=0]
Info: time since start : 1312.8329289130002 (s)                                       [SPH][rank=0]
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[-3.71572803e-38  2.70974117e-16 -1.33823078e-15 ...  2.03694565e-10
 -6.88148271e-15 -2.41628753e-12]
(11520, 3)
[[-3.71572803e-38  2.70974117e-16 -1.33823078e-15 -3.22598298e-15
  -1.67366278e-14]
 [-6.08687838e-33 -3.13213563e-48 -3.50298530e-28 -1.27892331e-12
  -2.76158139e-12]
 [ 2.04653595e-05  9.49889757e-06 -4.12470609e-22  1.13954157e-08
   1.52282365e-09]
 ...
 [ 3.17941899e-05  2.83356737e-05 -4.62590619e-11  4.71805091e-09
   1.63616262e-10]
 [ 6.21124020e-06 -5.99126972e-34 -2.40829171e-30  9.20764840e-09
   1.00499641e-10]
 [-6.89175209e-72 -4.13551761e-41  2.03694565e-10 -6.88148271e-15
  -2.41628753e-12]]
compute original rho
Info: Dumping state to _to_trash/dusty_settle/dump/0000050.sham                       [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.61 us   (71.3%)
Info: dump to _to_trash/dusty_settle/dump/0000050.sham                      [Shamrock Dump][rank=0]
              - took 1.20 ms, bandwidth = 2.46 GB/s

Convert PNG sequence to Image sequence in mpl#

489 from shamrock.utils.plot import show_image_sequence
492 glob_str = f"{dump_folder}/plots/vert_slice_dens_*.png"
493 ani = show_image_sequence(glob_str)
494
495 from matplotlib.animation import PillowWriter
496
497 writer = PillowWriter(fps=15, metadata=dict(artist="Me"), bitrate=1800)
498 ani.save("_to_trash/dustysettle_vert_slice_tvi.gif", writer=writer)
499
500 if shamrock.sys.world_rank() == 0:
501     # Show the animation
502     plt.show()
505 glob_str = f"{dump_folder}/plots/vert_slice_s_*.png"
506 ani = show_image_sequence(glob_str)
507
508 from matplotlib.animation import PillowWriter
509
510 writer = PillowWriter(fps=15, metadata=dict(artist="Me"), bitrate=1800)
511 ani.save("_to_trash/dustysettle_vert_slice_s_tvi.gif", writer=writer)
512
513 if shamrock.sys.world_rank() == 0:
514     # Show the animation
515     plt.show()

Plot the mass history

520 t, dust_mass = load_data_from_json("dust_mass.json", "dust_mass")
521 dust_mass = np.array(dust_mass)
522
523 plt.figure()
524 for k in range(ndust):
525     mh = dust_mass[:, k]
526     deviation = (mh / mh[0]) - 1
527
528     t_dyn = 1
529     ts = shamrock.phys.epstein_stopping_time(
530         rho_grain=mrn_distribution.rho_grains[k],
531         s_grain=mrn_distribution.grain_size[k],
532         rho=rho_i,
533         cs=cs,
534         gamma=gamma,
535     )
536     St = ts / t_dyn
537
538     plt.plot(
539         t,
540         deviation,
541         label=f"dust {k}, s = {mrn_distribution.grain_size_si[k]:.1e} [m], St = {St:.1e}",
542     )
543
544 total_dust_mass = np.sum(dust_mass, axis=1)
545 plt.plot(
546     t,
547     (total_dust_mass / total_dust_mass[0]) - 1,
548     color="grey",
549     label="total dust mass",
550     linestyle="--",
551 )
552
553 plt.xlabel("t")
554 plt.ylabel("$\delta M_{dust} / M_{dust,0}$")
555 plt.yscale("log")
556 plt.title("Dust mass conservation")
557 plt.legend()
558 plt.tight_layout()
559 plt.savefig(f"{dump_folder}/plots/dust_mass_history.png")
560 plt.show()
Dust mass conservation

Total running time of the script: (24 minutes 16.301 seconds)

Estimated memory usage: 2922 MB

Gallery generated by Sphinx-Gallery